fix(lint): remove unnecessary ESLint rules

This commit is contained in:
Naoki Oketani
2025-05-07 12:14:50 +00:00
parent d5d84ff3f1
commit 7e887fbc7b

View File

@@ -74,12 +74,9 @@ export default [
'eslint-comments/no-unused-disable': 'off', 'eslint-comments/no-unused-disable': 'off',
'i18n-text/no-en': 'off', 'i18n-text/no-en': 'off',
'import/no-namespace': 'off', 'import/no-namespace': 'off',
'import/no-unresolved': 'off',
'no-console': 'off', 'no-console': 'off',
'no-shadow': 'off', 'no-shadow': 'off',
'no-unused-vars': 'off', 'no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
'prettier/prettier': 'error' 'prettier/prettier': 'error'
} }
} }