Skip to content

Commit d913423

Browse files
authored
eslint9アップデート。neostandardに移行 (#388)
1 parent defb4ed commit d913423

File tree

6 files changed

+3662
-950
lines changed

6 files changed

+3662
-950
lines changed

.eslintrc.js

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

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

eslint.config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import neostandard from "neostandard";
2+
import tseslint from "typescript-eslint";
3+
4+
export default [
5+
...neostandard({
6+
ignores: ["lib/*"],
7+
noStyle: true,
8+
semi: true,
9+
ts: true,
10+
}),
11+
...tseslint.config(tseslint.configs.strict, tseslint.configs.stylistic),
12+
];

0 commit comments

Comments
 (0)