-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.cjs
50 lines (48 loc) · 1.37 KB
/
.eslintrc.cjs
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const stylistic = require("@stylistic/eslint-plugin")
const customized = stylistic.configs.customize({
indent: 4,
quotes: "double",
semi: false,
jsx: true,
})
module.exports = {
root: true,
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
sourceType: "module",
},
env: {
node: true,
es2022: true,
},
plugins: [
"@stylistic",
"@typescript-eslint",
],
rules: {
...customized.rules,
"@stylistic/jsx-one-expression-per-line": "off",
"@stylistic/max-len": ["warn", 120],
"@stylistic/no-trailing-spaces": ["error", { skipBlankLines: true }],
"@stylistic/member-delimiter-style": ["error", {
multiline: {
delimiter: "comma",
requireLast: true,
},
singleline: {
delimiter: "comma",
requireLast: false,
},
}],
"@stylistic/multiline-ternary": "off",
"@stylistic/brace-style": ["error", "1tbs", {
allowSingleLine: true,
}],
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
},
}