-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.eslintrc.json
57 lines (57 loc) · 1.67 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"no-param-reassign": "off",
"no-use-before-define": "off",
"no-param-reassign": "off",
"import/extensions": "off",
"no-undef": "off",
"no-new": "off",
"guard-for-in": "off",
"no-restricted-syntax": "off",
"no-multi-str": "off",
"consistent-return": "off",
"camelcase": "off",
"class-methods-use-this": "off",
"new-cap": "off",
"no-restricted-globals": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"max-len": "off",
"no-empty": "off",
"prefer-destructuring": "off",
"import/no-extraneous-dependencies": "off",
"max-classes-per-file": "off",
"default-case": "off",
"no-useless-constructor": "off",
"no-return-assign": "off",
"eqeqeq": "off",
"no-plusplus": "off",
"vars-on-top": "off",
"no-cond-assign": "off",
"no-var": "off",
"radix": "off",
"block-scoped-var": "off",
"no-redeclare": "off",
"no-extend-native": "off",
"no-loop-func": "off",
"no-tabs": "off",
"no-mixed-spaces-and-tabs": "off",
"no-shadow": "off",
"no-throw-literal": "off",
"no-useless-concat": "off",
"no-mixed-operators": "off"
},
"ignorePatterns": ["assets/js/components/audit-opinions.js", "assets/js/components/contacts.js"]
}