Skip to content

Commit 8c1cd36

Browse files
committed
upgrade eslint
1 parent 86584e2 commit 8c1cd36

9 files changed

+2392
-1172
lines changed

.eslintignore

-1
This file was deleted.

.eslintrc.js

-89
This file was deleted.

eslint.config.mjs

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
import path from "node:path";
2+
import { fileURLToPath } from "node:url";
3+
4+
import { fixupConfigRules, fixupPluginRules } from "@eslint/compat";
5+
import typescriptEslintEslintPlugin from "@typescript-eslint/eslint-plugin";
6+
import tsdoc from "eslint-plugin-tsdoc";
7+
import tsParser from "@typescript-eslint/parser";
8+
import js from "@eslint/js";
9+
import { FlatCompat } from "@eslint/eslintrc";
10+
11+
const __filename = fileURLToPath(import.meta.url);
12+
const __dirname = path.dirname(__filename);
13+
const compat = new FlatCompat({
14+
baseDirectory: __dirname,
15+
recommendedConfig: js.configs.recommended,
16+
allConfig: js.configs.all
17+
});
18+
19+
export default [{
20+
ignores: ["**/*.js"],
21+
}, ...fixupConfigRules(compat.extends(
22+
"eslint:recommended",
23+
"plugin:@typescript-eslint/recommended",
24+
"plugin:import/recommended",
25+
"plugin:import/typescript",
26+
"prettier",
27+
)), {
28+
plugins: {
29+
"@typescript-eslint": fixupPluginRules(typescriptEslintEslintPlugin),
30+
tsdoc,
31+
},
32+
33+
languageOptions: {
34+
parser: tsParser,
35+
ecmaVersion: 5,
36+
sourceType: "script",
37+
38+
parserOptions: {
39+
project: "./tsconfig.json",
40+
},
41+
},
42+
43+
settings: {},
44+
45+
rules: {
46+
"no-constant-condition": ["warn", {
47+
checkLoops: false,
48+
}],
49+
50+
"no-useless-escape": "warn",
51+
"no-console": "warn",
52+
"no-var": "warn",
53+
"no-return-await": "warn",
54+
"prefer-const": "warn",
55+
"guard-for-in": "warn",
56+
curly: "warn",
57+
"no-param-reassign": "warn",
58+
"prefer-spread": "warn",
59+
"import/no-unresolved": "off",
60+
"import/no-cycle": "error",
61+
"import/no-default-export": "warn",
62+
"tsdoc/syntax": "warn",
63+
"@typescript-eslint/await-thenable": "warn",
64+
65+
"@typescript-eslint/array-type": ["warn", {
66+
default: "generic",
67+
}],
68+
69+
"@typescript-eslint/naming-convention": ["warn", {
70+
selector: "default",
71+
format: ["camelCase", "UPPER_CASE", "PascalCase"],
72+
leadingUnderscore: "allow",
73+
}, {
74+
selector: "typeLike",
75+
format: ["PascalCase"],
76+
leadingUnderscore: "allow",
77+
}],
78+
79+
"@typescript-eslint/restrict-plus-operands": "warn",
80+
//"@typescript-eslint/no-throw-literal": "warn",
81+
"@typescript-eslint/unbound-method": "warn",
82+
"@typescript-eslint/explicit-module-boundary-types": "warn",
83+
//"@typescript-eslint/no-extra-semi": "warn",
84+
"@typescript-eslint/no-extra-non-null-assertion": "warn",
85+
86+
"@typescript-eslint/no-unused-vars": ["warn", {
87+
argsIgnorePattern: "^_",
88+
}],
89+
90+
"@typescript-eslint/no-use-before-define": "warn",
91+
"@typescript-eslint/no-for-in-array": "warn",
92+
"@typescript-eslint/no-unsafe-argument": "warn",
93+
"@typescript-eslint/no-unsafe-call": "warn",
94+
95+
"@typescript-eslint/no-unnecessary-condition": ["warn", {
96+
allowConstantLoopConditions: true,
97+
}],
98+
99+
"@typescript-eslint/no-unnecessary-type-constraint": "warn",
100+
"@typescript-eslint/no-implied-eval": "warn",
101+
"@typescript-eslint/no-non-null-asserted-optional-chain": "warn",
102+
"@typescript-eslint/no-invalid-void-type": "warn",
103+
"@typescript-eslint/no-loss-of-precision": "warn",
104+
"@typescript-eslint/no-confusing-void-expression": "warn",
105+
"@typescript-eslint/no-redundant-type-constituents": "warn",
106+
"@typescript-eslint/prefer-for-of": "warn",
107+
"@typescript-eslint/prefer-includes": "warn",
108+
"@typescript-eslint/prefer-string-starts-ends-with": "warn",
109+
"@typescript-eslint/prefer-readonly": "warn",
110+
"@typescript-eslint/prefer-regexp-exec": "warn",
111+
"@typescript-eslint/prefer-nullish-coalescing": "warn",
112+
"@typescript-eslint/prefer-optional-chain": "warn",
113+
"@typescript-eslint/prefer-ts-expect-error": "warn",
114+
"@typescript-eslint/indent": "off",
115+
"@typescript-eslint/no-explicit-any": "off",
116+
"@typescript-eslint/no-empty-interface": "off",
117+
"@typescript-eslint/no-empty-function": "off",
118+
"@typescript-eslint/no-var-requires": "off",
119+
"@typescript-eslint/no-non-null-assertion": "off",
120+
"@typescript-eslint/ban-ts-comment": "off",
121+
},
122+
}];

0 commit comments

Comments
 (0)