We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c327317 commit ddf5b45Copy full SHA for ddf5b45
packages/ember-auto-import/.eslintrc.js
@@ -27,7 +27,10 @@ module.exports = {
27
'@typescript-eslint/no-explicit-any': 'off',
28
'@typescript-eslint/no-empty-function': 'off',
29
'@typescript-eslint/ban-ts-comment': 'off',
30
- '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
+
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'],
34
},
35
overrides: [
36
// node files
0 commit comments