-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc.js
38 lines (37 loc) · 1.04 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
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
env: {
browser: true,
},
extends: ['airbnb-base', 'plugin:prettier/recommended'],
plugins: ['prettier'],
// add your custom rules here
rules: {
'class-methods-use-this': 'off',
'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',
},
};