forked from HasangerGames/suroi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
152 lines (137 loc) · 5.6 KB
/
eslint.config.mjs
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// @ts-check
import eslint from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin";
import tseslint from "typescript-eslint";
/**
* TODO Add eslint-plugin-import-x, when it has support for Flat configuration.
*/
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strictTypeChecked,
...tseslint.configs.stylisticTypeChecked,
stylistic.configs.customize({
flat: true,
indent: 4,
semi: true,
commaDangle: "never"
}),
{
languageOptions: {
parserOptions: {
project: "tsconfig.eslint.json",
tsconfigRootDir: import.meta.dirname,
warnOnUnsupportedTypeScriptVersion: false
}
},
plugins: {
["@stylistic"]: stylistic
},
rules: {
// ESLint
curly: ["warn", "multi-line"],
["prefer-arrow-callback"]: "warn",
["prefer-template"]: "warn",
yoda: ["error", "never", { onlyEquality: true }],
// Stylistic
["@stylistic/arrow-parens"]: ["warn", "as-needed"],
["@stylistic/brace-style"]: ["warn", "1tbs", { allowSingleLine: true }],
["@stylistic/indent"]: ["warn", 4, { SwitchCase: 1 }],
["@stylistic/linebreak-style"]: ["warn", "unix"],
["@stylistic/member-delimiter-style"]: ["warn", { singleline: { delimiter: "comma" }, multiline: { delimiter: "none" } }],
["@stylistic/quotes"]: ["warn", "double", { avoidEscape: true }],
["@stylistic/space-before-function-paren"]: ["warn", "never"],
["@stylistic/no-multi-spaces"]: ["error", { ignoreEOLComments: true }],
// @typescript-eslint
["@typescript-eslint/array-type"]: ["warn", { default: "array-simple" }],
["@typescript-eslint/prefer-literal-enum-member"]: ["error", { allowBitwiseExpressions: true }],
["@typescript-eslint/ban-ts-comment"]: ["error", {
"ts-expect-error": "allow-with-description",
"ts-ignore": true,
"ts-nocheck": true,
"ts-check": false,
"minimumDescriptionLength": 5
}],
["@typescript-eslint/explicit-function-return-type"]: ["warn", {
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowDirectConstAssertionInArrowFunctions: true,
allowConciseArrowFunctionExpressionsStartingWithVoid: false,
allowFunctionsWithoutTypeParameters: false,
allowedNames: [],
allowIIFEs: false
}],
["@typescript-eslint/restrict-template-expressions"]: ["error", {
allowAny: true,
allowBoolean: true,
allowNullish: true,
allowNumber: true,
allowRegExp: true
}],
["@typescript-eslint/prefer-readonly"]: "error",
["@typescript-eslint/no-unused-vars"]: ["error", {
vars: "all",
args: "none"
}],
// #region disabled rules
/**
* lol no
*/
["@stylistic/max-statements-per-line"]: "off",
/**
* Literal skill issue filter
*/
["no-cond-assign"]: "off",
/**
* Literal skill issue filter
*/
["no-return-assign"]: "off",
/**
* Rule is a bit too aggressive, and writing `void foo()`
* conflicts with `@typescript-eslint/no-meaningless-void-operator`
*/
["@typescript-eslint/no-confusing-void-expression"]: "off",
/**
* This rule is just all-around annoying
*/
["@typescript-eslint/consistent-type-definitions"]: "off",
/**
* `this`-aliasing is useful to use a `this` context inside a construct which creates its own `this` binding.
* (and thus overrides the surrounding one)
*
* The most common example of this is using an object literal inside a class instance, or a
* `function` inside a class instance
*/
["@typescript-eslint/no-this-alias"]: "off",
/**
* ESLint also kinda mega sucks at detecting when this rule is actually appropriate, and sometimes
* we want to conflate `false` and `undefined`/`null`.
*/
["@typescript-eslint/prefer-nullish-coalescing"]: "off",
/**
* Misbehaves with things like `void (async() => {})()`
*/
["@typescript-eslint/require-await"]: "off",
/**
* Honestly screw this rule, doesn't work well with constructing object literals
*/
["@typescript-eslint/prefer-reduce-type-parameter"]: "off",
/**
* ESLint kinda massively sucks at correctly identifying an actually unnecessary condition
*
* Furthermore, seemingly unnecessary conditions are sometimes nevertheless written, either as
* sanity checks, to provide a fallback, or to detect an abnormal and exceptional circumstance
*/
["@typescript-eslint/no-unnecessary-condition"]: "off"
// #endregion
}
},
{
ignores: [
"common/dist/**",
"client/dist/**",
"server/dist/**",
"tests/dist/**"
]
}
);