Skip to content

Commit 238d677

Browse files
committedJun 8, 2024
chore: update eslint to v9
1 parent dff1ef8 commit 238d677

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed
 

‎.eslintignore

-3
This file was deleted.

‎.eslintrc

-10
This file was deleted.

‎eslint.config.mjs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import unjs from "eslint-config-unjs";
2+
3+
// https://github.com/unjs/eslint-config
4+
export default unjs({
5+
ignores: [],
6+
rules: {
7+
"no-undef": 0,
8+
"unicorn/prefer-module": 0,
9+
"unicorn/prefer-top-level-await": 0,
10+
"unicorn/no-null": 0,
11+
"@typescript-eslint/no-unused-vars": 0
12+
},
13+
});

0 commit comments

Comments
 (0)