-
Notifications
You must be signed in to change notification settings - Fork 36
/
.eslintrc.js
41 lines (41 loc) · 1.14 KB
/
.eslintrc.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
35
36
37
38
39
40
41
module.exports = {
"extends": "airbnb-base",
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script",
},
"rules": {
"strict": "off",
"max-len": "off",
"spaced-comment": "off",
"linebreak-style": "off",
"no-underscore-dangle": "off",
"padded-blocks": "off",
"prefer-template": "off",
"comma-dangle": "off",
"no-plusplus": "off",
"no-var": "off",
"one-var": "off",
"one-var-declaration-per-line": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"no-nested-ternary": "off",
"vars-on-top": "off",
"camelcase": "off",
"indent": "off",
"no-console": "off",
"no-prototype-builtins": "off",
"space-before-function-paren": "off",
"prefer-rest-params": "off",
"func-names": "off",
"no-multi-assign": "off",
"keyword-spacing": "off",
"prefer-arrow-callback": "off",
"prefer-spread": "off",
"object-shorthand": "off",
"comma-spacing": "off",
}
};