forked from flybywiresim/aircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
65 lines (65 loc) · 1.62 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
58
59
60
61
62
63
64
65
{
"root": true,
"env": {
"browser": true,
"es2021": true
},
// DO NOT CHANGE THIS FILE (unless you are an admin) (if admin, make sure you change the same file in the latest asobo branch as well)
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
// "linebreak-style": [
// "error",
// "unix"
// ],
"linebreak-style": "off",
// No quotes option is really fully consistent, so probably best to jsut not enforce either type
"quotes": "off",
"semi": ["error", "always"],
"curly": ["error", "all"],
"brace-style": ["error", "1tbs"],
"space-before-blocks": "error",
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"keyword-spacing": "error",
"no-irregular-whitespace": "error",
"no-trailing-spaces": "error",
"semi-spacing": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multi-spaces": "error",
// There are too many vars that cant be autofixed
"no-var": "off",
"prefer-const": [
"error",
{
"destructuring": "all"
}
],
// The vanilla code already has over 100 console.logs, but maybe we can enable this in master and delete them there
"no-console": "off",
"no-debugger": "error",
"eol-last": ["error", "never"],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 0
}
]
}
}