diff --git a/.eslintrc.js b/.eslintrc.js index 501021beb..fda448a4e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,6 +16,7 @@ module.exports = { files: ['**/*.spec.{js,ts,tsx}'], rules: { 'sonarjs/no-duplicate-string': 'off', + 'sonarjs/unused-import': 'off', }, }, { @@ -24,5 +25,11 @@ module.exports = { 'no-console': 'off', }, }, + { + files: ['**/*.tsx'], + rules: { + 'sonarjs/unused-import': 'off', + }, + }, ], }