mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-16 19:23:23 +00:00
21 lines
411 B
JavaScript
21 lines
411 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: ['airbnb-base', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 13,
|
|
},
|
|
rules: {
|
|
'import/no-extraneous-dependencies': 0,
|
|
'no-unused-vars': ['error', { args: 'none' }],
|
|
'no-console': 'off',
|
|
'no-alert': 'off',
|
|
'no-plusplus': 'off',
|
|
'import/extensions': 'off',
|
|
},
|
|
};
|