-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
34 lines (33 loc) · 918 Bytes
/
.eslintrc.json
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
{
"extends": ["airbnb"],
"plugins": [],
"parserOptions": {
"sourceType": "script"
},
"env": {"browser": true},
"globals": {},
"rules": {
"no-console": 0,
"no-inner-declarations": "warn",
"no-var": 0,
"vars-on-top": 0,
"prefer-template": 0,
"prefer-arrow-callback": 0,
"semi": 0,
"space-before-function-paren": 0,
"no-plusplus": 0,
"prefer-destructuring": 0,
"no-continue": 0,
"func-names": 0,
"function-paren-newline": 0,
"comma-dangle": 0,
"object-shorthand": 0,
"object-curly-spacing": 0,
"operator-assignment": 0,
"no-multi-assign": 0,
"no-param-reassign": ["warn", { "props": false }],
"strict": ["error", "function"],
"lines-around-directive": 0,
"no-cond-assign": ["error", "except-parens"]
}
}