Skip to content

Commit ddf5b45

Browse files
committed
avoid eslint issue
1 parent c327317 commit ddf5b45

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/ember-auto-import/.eslintrc.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ module.exports = {
2727
'@typescript-eslint/no-explicit-any': 'off',
2828
'@typescript-eslint/no-empty-function': 'off',
2929
'@typescript-eslint/ban-ts-comment': 'off',
30-
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
30+
31+
// there's a bug in this rule that treats decorators as unused. We can
32+
// probably turn this back on after doing the next eslint major.
33+
'@typescript-eslint/no-unused-vars': ['off'],
3134
},
3235
overrides: [
3336
// node files

0 commit comments

Comments
 (0)