Skip to content

Commit

Permalink
avoid eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Nov 1, 2024
1 parent c327317 commit ddf5b45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/ember-auto-import/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ module.exports = {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],

// there's a bug in this rule that treats decorators as unused. We can
// probably turn this back on after doing the next eslint major.
'@typescript-eslint/no-unused-vars': ['off'],
},
overrides: [
// node files
Expand Down

0 comments on commit ddf5b45

Please sign in to comment.