Skip to content

Commit da7633b

Browse files
committed
EXTRA: Allow unused vars and args that start with _
1 parent 0736e58 commit da7633b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

glean/.eslintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
"semi": "off",
2121
"@typescript-eslint/semi": ["error", "always"],
2222
"@typescript-eslint/consistent-type-imports": "error",
23+
"no-unused-vars": "off",
24+
"@typescript-eslint/no-unused-vars": [ "error", {
25+
"argsIgnorePattern": "^_",
26+
"varsIgnorePattern": "^_"
27+
}],
2328
"no-debugger": ["error"],
2429
"no-multi-spaces": "error",
2530
"jsdoc/no-types": "off",

0 commit comments

Comments
 (0)