Skip to content

Commit

Permalink
Remove unused-imports/no-unused-imports for TSX files
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Mar 5, 2025
1 parent d738dfb commit ec4c8c4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions generators/bootstrap/support/eslint-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ export default async ({ cwd, filePath, fileContents, extensions, config, additio
ts.configs.base,
...additionalConfig,
config ? JSON.parse(config) : jhipster.base,
{
files: ['**/*.tsx'],
rules: {
'unused-imports/no-unused-imports': 'off',
},
},
),
});
}
Expand Down

0 comments on commit ec4c8c4

Please sign in to comment.