You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
797 B
39 lines
797 B
module.exports = {
|
|
root: true,
|
|
parser: 'babel-eslint',
|
|
parserOptions: {
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
es6: true
|
|
},
|
|
extends: [
|
|
'eslint:recommended'
|
|
],
|
|
plugins: [
|
|
'html',
|
|
'import'
|
|
],
|
|
globals: {
|
|
'cdk': true,
|
|
'cordova': true,
|
|
'DEV': true,
|
|
'PROD': true,
|
|
'__THEME': true
|
|
},
|
|
rules: {
|
|
'arrow-parens': 0,
|
|
'one-var': 0,
|
|
'import/first': 0,
|
|
'import/named': 2,
|
|
'import/namespace': 2,
|
|
'import/default': 2,
|
|
'import/export': 2,
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
|
'brace-style': [2, 'stroustrup', {'allowSingleLine': true}],
|
|
"no-console": 0
|
|
}
|
|
};
|
|
|