forked from flybywiresim/installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
89 lines (88 loc) · 2.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"react",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true,
"es2021": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
// 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": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-var-requires": "off",
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"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"],
"object-curly-spacing": ["error", "always"],
"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",
"prefer-const": [
"error",
{
"destructuring": "all"
}
],
"no-console": "off",
"eol-last": ["error", "always"],
// Fix false positives on enums
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
// Why...
"@typescript-eslint/no-empty-function": "off",
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 0
}
],
// require trailing commas in multiline object literals
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "always-multiline"
}],
// enforce spacing before and after comma
"comma-spacing": ["error", { "before": false, "after": true }]
}
}