-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript.js
34 lines (34 loc) · 939 Bytes
/
javascript.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
module.exports = {
"extends": "eslint-config-airbnb-base",
"rules": {
"no-console": "off",
"no-await-in-loop": "off",
"no-constant-condition": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"no-case-declarations": "off",
"no-continue": "off",
"object-curly-newline": "off",
"no-bitwise": "off",
"no-else-return": "off",
"no-plusplus": "off",
"class-methods-use-this": "off",
"no-labels": "off",
"consistent-return": "off",
"no-return-await": "off",
"no-restricted-globals": "off",
"radix": "off",
"no-confusing-arrow": "off",
"import/no-unresolved": "off",
'max-len': ['error', 120, 2, {
ignoreUrls: true,
ignoreComments: false,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
}],
"quote-props": "off",
"quotes": "off",
},
};