-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
57 lines (57 loc) · 1.29 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
53
54
55
56
57
module.exports = {
root: true,
ignorePatterns: ['dist', 'node_modules'],
rules: {
'no-param-reassign': 0,
'max-len': [
'error',
{
ignoreUrls: true,
code: 80,
},
],
'prefer-template': 'off',
indent: [1, 2],
'object-curly-spacing': 1,
'no-multiple-empty-lines': [
1,
{
max: 1,
maxEOF: 1,
},
],
'no-var': 1,
camelcase: 1,
'no-new-wrappers': 1,
'no-nested-ternary': 1,
'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-template-curly-in-string': 1,
'no-self-compare': 1,
'import/prefer-default-export': 0,
'func-names': [1, 'as-needed'],
'arrow-body-style': 1,
semi: [1, 'never'],
'import/no-extraneous-dependencies': ['off', { devDependencies: false }],
},
env: {
browser: true,
es6: true,
jquery: true
},
extends: ['eslint:recommended', 'airbnb-base'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 11,
sourceType: 'module',
},
settings: {
'import/resolver': {
webpack: {
config: './webpack.common.js',
},
},
},
}