-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
52 lines (52 loc) · 1.35 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true
}
},
env: {
browser: true,
es6: true,
node: true
},
extends: 'airbnb-base',
// required to lint *.js files
plugins: ['react', 'html'],
// check if imports actually resolve
settings: {
'import/resolver': {
webpack: {
config: 'build/webpack.base.config.js'
}
}
},
// add your custom rules here
rules: {
'no-undefined': 'warn',
'no-unused-vars': [
'warn',
{ vars: 'local', args: 'after-used', ignoreRestSiblings: true }
],
'import/prefer-default-export': 'off',
'comma-dangle': [1, 'never'],
'no-undef': 'off',
'no-restricted-syntax': ['error', 'WithStatement'],
'no-unused-expressions': ['warn'],
'class-methods-use-this': ['off'],
'global-require': 'warn',
'no-script-url': 'warn',
'no-nested-ternary': 'off',
'arrow-body-style': ['warn'],
'max-len': 'warn',
'import/no-webpack-loader-syntax': 'warn',
'no-underscore-dangle': 'off',
'prefer-arrow-callback': ['error', { allowUnboundThis: true }],
'no-mixed-operators': ['warn'],
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
};