-
Notifications
You must be signed in to change notification settings - Fork 80
/
.eslintrc.json
37 lines (37 loc) · 984 Bytes
/
.eslintrc.json
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
{
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"extends": [
"airbnb-base",
"plugin:unicorn/recommended"
],
"plugins": [
"unicorn"
],
"rules": {
"no-bitwise": 0,
"no-constructor-return": 0,
"no-mixed-operators": 0,
"object-curly-newline": ["error", {
"ObjectExpression": { "multiline": true, "consistent": true },
"ObjectPattern": { "multiline": true, "consistent": true }
}],
"import/extensions": ["error", "ignorePackages"],
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"unicorn/no-array-callback-reference": 0,
"unicorn/no-array-for-each": 0,
"unicorn/no-array-reduce": 0,
"unicorn/no-for-loop": 0,
"unicorn/no-null": 0,
"unicorn/numeric-separators-style": 0,
"unicorn/prefer-spread": 0,
"unicorn/prefer-string-raw": 0,
"unicorn/prefer-string-replace-all": 0,
"unicorn/prevent-abbreviations": 0
}
}