Skip to content

Commit 9ff0367

Browse files
committed
update eslint to ignore log
1 parent d8af0ba commit 9ff0367

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

eslint.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export default [
1717
rules: {
1818
"@typescript-eslint/no-unused-expressions": 0,
1919
"@typescript-eslint/no-explicit-any": 0,
20+
"@typescript-eslint/no-unused-vars": 0,
2021
"comma-dangle": "off"
2122
}
2223
},
@@ -47,6 +48,7 @@ export default [
4748
"no-unused-vars": ["error", {
4849
"vars": "all",
4950
"args": "after-used",
51+
"varsIgnorePattern": "log",
5052
"ignoreRestSiblings": false
5153
}],
5254
"global-require": 0,

0 commit comments

Comments
 (0)