-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.eslintrc.js
More file actions
32 lines (32 loc) · 840 Bytes
/
.eslintrc.js
File metadata and controls
32 lines (32 loc) · 840 Bytes
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
module.exports = {
"extends": "airbnb-base",
"env": {
"browser": true,
"es2021": true,
"jquery": true,
},
"parserOptions": {
"ecmaVersion": 12
},
"globals": {
stream: "readonly",
restRequest: "readonly",
certificates: "readonly",
},
"rules": {
// These can't be fixed with --fix and will require manual updates.
"camelcase": "off",
"eqeqeq": "off",
"func-names": "off",
"guard-for-in": "off",
"no-alert": "off",
"no-case-declarations": "off",
"no-console": "off",
"no-labels": "off",
"no-param-reassign": "off",
"no-restricted-globals": "off",
"no-restricted-syntax": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
}
};