-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
.eslintrc.js
48 lines (48 loc) · 1.18 KB
/
.eslintrc.js
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
module.exports = {
plugins: [
"html",
"jinja2"
],
extends: "airbnb-base",
env: {
browser: true,
es2021: true,
jquery: true
},
parserOptions: {
ecmaVersion: 12
},
globals: {
stream: "readonly",
restRequest: "readonly",
certificates: "readonly"
},
rules: {
"camelcase": "off",
"comma-dangle": "off",
"eqeqeq": "off",
"func-names": "off",
"guard-for-in": "off",
"indent": ["error", 4],
"max-len": "off",
"newline-per-chained-call": "off",
"no-alert": "off",
"no-await-in-loop": "off",
"no-case-declarations": "off",
"no-console": "off",
"no-labels": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-restricted-globals": "off",
"no-restricted-syntax": "off",
"no-tabs": "off",
"no-undef": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-useless-escape": "off",
"no-var": "off",
"object-shorthand": "off",
"prefer-const": "off",
"prefer-destructuring": "off"
}
};