Skip to content

Commit d3ab5f8

Browse files
committed
chore: update eslint config
1 parent 39ed1eb commit d3ab5f8

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

eslint.config.mjs

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@ import unjs from "eslint-config-unjs";
22

33
// https://github.com/unjs/eslint-config
44
export default unjs({
5-
ignores: [
6-
"types",
7-
"**/.wrangler",
8-
"**/.docs/**",
9-
],
5+
ignores: ["types", "**/.wrangler", "**/.docs/**"],
106
rules: {
11-
"@typescript-eslint/no-unused-vars": 0,
12-
"no-useless-constructor": 0,
13-
"unicorn/consistent-function-scoping": 0
14-
},
7+
"@typescript-eslint/no-unused-vars": 0,
8+
"no-useless-constructor": 0,
9+
"unicorn/consistent-function-scoping": 0,
10+
"@typescript-eslint/no-empty-object-type": 0,
11+
},
1512
});

0 commit comments

Comments
 (0)