-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
39 lines (39 loc) · 902 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
38
39
{
"root": true,
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"plugin:unicorn/all",
"airbnb"
],
"plugins": [
"unicorn",
"import",
"simple-import-sort"
],
"rules": {
"linebreak-style": 0,
"arrow-body-style": "off",
"unicorn/no-unused-properties": "off",
"prefer-promise-reject-errors": "off",
"no-param-reassign": "off",
"unicorn/no-negated-condition": "off",
"no-unused-vars": "error",
"quote-props": "off",
"no-restricted-syntax": "off", // allow for...of
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-null": "off",
"unicorn/no-for-loop": "off",
"no-console": "off",
"simple-import-sort/exports": "warn",
"simple-import-sort/imports": "warn"
}
}