Skip to content

Commit a7a6a4b

Browse files
committed
🏗️ Migrate '.eslintrc.json' to 'eslint.config.mjs' for eslint 9.x
Signed-off-by: kei-g <[email protected]>
1 parent 09fe1b8 commit a7a6a4b

5 files changed

+182
-59
lines changed

.eslintrc.json

-40
This file was deleted.

eslint.config.mjs

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import globals from 'globals'
2+
import tslint from 'typescript-eslint'
3+
4+
/** @type {import('eslint').Linter.Config[]} */
5+
export default [
6+
{
7+
files: [
8+
'src/**/*.ts',
9+
],
10+
languageOptions: {
11+
globals: {
12+
...globals.node,
13+
},
14+
parser: tslint.parser,
15+
parserOptions: {
16+
ecmaVersion: 'latest',
17+
sourceType: 'module',
18+
},
19+
},
20+
plugins: {
21+
tslint: tslint.plugin,
22+
},
23+
rules: {
24+
complexity: [
25+
'error',
26+
4,
27+
],
28+
indent: [
29+
'error',
30+
2,
31+
{
32+
SwitchCase: 1,
33+
},
34+
],
35+
'linebreak-style': [
36+
'error',
37+
'unix',
38+
],
39+
'no-control-regex': 'off',
40+
'no-namespace': 'off',
41+
'no-unused-vars': [
42+
'warn',
43+
{
44+
'argsIgnorePattern': '^_',
45+
'caughtErrorsIgnorePattern': '^_',
46+
'destructuredArrayIgnorePattern': '^_',
47+
'varsIgnorePattern': '^_',
48+
},
49+
],
50+
quotes: [
51+
'error',
52+
'single',
53+
],
54+
semi: [
55+
'error',
56+
'never',
57+
],
58+
}
59+
}
60+
]

package-lock.json

+110-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)