-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
54 lines (54 loc) · 1.43 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
module.exports = {
"extends": [
"airbnb-base",
],
"plugins": [
"import"
],
"rules": {
"yoda": 0,
"import/no-dynamic-require": 0,
"no-prototype-builtins": 0,
'object-curly-newline': 0,
'prefer-template': 0,
"no-param-reassign": 0,
"prefer-destructuring": 0,
"max-classes-per-file": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"quotes": 0,
"semi": 0,
"comma-dangle": 0,
"valid-jsdoc": 0,
"eqeqeq": 0,
"dot-notation": 0,
"spaced-comment": 0,
"no-var": 0,
"import/no-mutable-exports": 0,
"indent": ["error", 2],
"space-before-function-paren": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"no-bitwise": 0,
"object-shorthand": 0,
"no-console": 0,
"quote-props": 0,
"consistent-return": 0,
"guard-for-in": 0,
"no-plusplus": 0,
"prefer-arrow-callback": 0,
"import/extensions": ["error", "never", { "packages": "always" }],
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"linebreak-style": 0,
"max-len": "off",
"camelcase": 0,
"no-await-in-loop": 0
},
"env": {
"browser": true,
"jquery": true,
"jest": true
},
"globals": {
}
};