forked from SWO-GS/auto-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 858 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
{
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 2017
},
"plugins": [
"import"
],
"rules": {
"no-await-in-loop": "off",
"no-return-await": "warn",
"arrow-parens": ["error", "as-needed"],
"func-names": "off",
"max-len": ["error", { "code": 150, "ignorePattern": "^import |^export ", "ignoreRegExpLiterals": true }],
"no-underscore-dangle": 0,
"no-useless-escape": 0,
"no-warning-comments": ["error", { "terms": ["todo", "fixme"], "location": "anywhere" }],
"no-else-return": 0,
"comma-dangle": "off",
"function-paren-newline": "off",
"class-methods-use-this": "off",
"prefer-destructuring": "off",
"no-restricted-syntax": "off",
"spaced-comment": "off",
"object-curly-newline": "off",
"no-plusplus": "off",
"indent": "off",
"no-console": "off"
}
}