Skip to content

Commit 97e57af

Browse files
committed
ignore _ var names in eslint
1 parent f9e7f97 commit 97e57af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default [
3434
"@typescript-eslint/no-explicit-any": "off",
3535
"@typescript-eslint/no-unused-vars": [
3636
"error",
37-
{ ignoreRestSiblings: true },
37+
{ ignoreRestSiblings: true, varsIgnorePattern: "^_" },
3838
],
3939
},
4040
},

0 commit comments

Comments
 (0)