Skip to content

Commit 0384893

Browse files
authored
Merge pull request #389 from tkskto/develop
v0.9.1
2 parents 10a8d2d + 3843f3a commit 0384893

File tree

8 files changed

+3725
-8547
lines changed

8 files changed

+3725
-8547
lines changed

.eslintrc.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [18.x, 20.x]
16+
node-version: [18.x, 20.x, 22.x]
1717

1818
steps:
1919
- uses: actions/checkout@v4

eslint.config.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import tseslint from "@typescript-eslint/eslint-plugin";
2+
import tsparser from "@typescript-eslint/parser";
3+
import mitsue from "@mitsue/eslint-config";
4+
import typescripteslint from "typescript-eslint";
5+
6+
export default [
7+
...mitsue,
8+
...typescripteslint.configs.recommended,
9+
{
10+
languageOptions: {
11+
parser: tsparser,
12+
sourceType: "module",
13+
},
14+
plugins: {
15+
"@typescript-eslint": tseslint,
16+
},
17+
rules: {
18+
indent: [2, 2, { SwitchCase: 1 }],
19+
"multiline-comment-style": 0,
20+
"@typescript-eslint/no-var-requires": 0,
21+
"no-console": 0,
22+
"no-new": 0,
23+
"arrow-body-style": 0,
24+
},
25+
},
26+
];

0 commit comments

Comments
 (0)