-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy path.eslintrc.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
42
43
44
45
46
47
48
49
50
51
{
"extends": "airbnb-base",
"env": {
"browser": true,
"jquery": true,
"node": true
},
"rules": {
"indent": ["error", "tab", {"SwitchCase":1}],
"semi": ["error", "never"],
"no-new": "off",
"radix": "off",
"consistent-return": "off",
"no-shadow": ["error", { "allow": ["err", "done"] }],
"no-param-reassign": "off",
"func-names": "off",
"no-use-before-define": "off",
"prefer-template": "off",
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false
}],
"no-cond-assign": ["error", "except-parens"],
"no-plusplus": "off",
"no-continue": "off",
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"no-underscore-dangle": "off",
"no-console": "off",
"guard-for-in": "off",
"no-tabs": "off",
"no-nested-ternary": "off",
"class-methods-use-this": "off",
"no-restricted-syntax": ["error","LabeledStatement","WithStatement"],
"newline-per-chained-call": "off",
"max-len": "off",
"global-require": "off",
"new-cap":"off",
"valid-typeof": "off",
"import/no-dynamic-require": "off",
"no-constant-condition": "off",
"no-await-in-loop": "off",
"no-loop-func": "off",
"prefer-destructuring": "off",
"object-curly-newline": "off",
"default-case": "off",
"no-case-declarations": "off",
"no-multi-assign": "off",
"no-mixed-operators": "off",
"camelcase": "off"
}
}