-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (35 loc) · 905 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
34
35
{
"extends": [
"airbnb-base"
],
"plugins": [
"import",
"html"
],
"rules": {
"import/newline-after-import": "off",
"linebreak-style": "off",
"no-trailing-spaces": "off",
"no-tabs": "off",
"spaced-comment": "warn",
"no-undef": 1,
"indent":"off",
"brace-style": "off",
"no-var": "off",
"vars-on-top": "off",
"space-before-function-paren": "off",
"no-shadow": "off",
"func-names": "off",
"no-unused-vars": "off",
"quotes": "off",
"no-plusplus": "off",
"prefer-destructuring": "off",
"no-loop-func": "off",
"max-len": "off",
"no-param-reassign": "off",
"comma-dangle": ["error", "never"],
"no-restricted-syntax": "off",
"guard-for-in": "off",
"new-cap":"off"
}
}