-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc
37 lines (37 loc) · 997 Bytes
/
.eslintrc
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
{
"extends": "airbnb-base",
"env": {
"browser": true,
"es6": true,
},
"plugins": [
"import",
],
"rules": {
"arrow-body-style": "off",
"arrow-parens": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "only-multiline",
}],
"implicit-arrow-linebreak": "off",
"import/extensions": ["error", "always", { "js": "never", "mjs": "ignorePackages" }],
"import/order": "off",
"import/prefer-default-export": "off",
"no-confusing-arrow": "off",
"no-console": ["error", {
"allow": ["warn", "error"],
}],
"no-param-reassign": "off",
"no-nested-ternary": "off",
"no-script-url": "off",
"no-unused-vars": ["error", { "args": "none" }],
"object-curly-newline": "off",
"padded-blocks": "off",
"quote-props": ["error", "consistent"],
"quotes": "off",
},
}