-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.js
44 lines (43 loc) · 1.4 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
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
env: {
browser: true,
},
parser: "babel-eslint",
extends: [
'airbnb-base',
],
// add your custom rules here
rules: {
'class-methods-use-this': 'off',
'comma-dangle': ['error', {
'arrays': 'always-multiline',
'objects': 'always-multiline',
'imports': 'always-multiline',
'exports': 'always-multiline',
'functions': 'never',
}],
'indent': ['error', 4, {
SwitchCase: 1,
}],
'no-duplicate-imports': 'error',
// risk only exist with semi-colon auto insertion. Not our case.
'no-plusplus': 'off',
'no-param-reassign': 'off',
'no-underscore-dangle': ['error', {
'allowAfterSuper': true,
'allowAfterThis': true,
}],
'prefer-destructuring': 'off',
// don't require .js extension when importing
'import/extensions': ['error', 'always', { js: 'never' }],
// allow optionalDependencies
'import/no-extraneous-dependencies': ['error', {
optionalDependencies: ['test/unit/index.js'],
}],
'import/prefer-default-export': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
},
};