.eslintrc.cjs 487 B

12345678910111213141516171819
  1. module.exports = {
  2. root: true,
  3. env: { browser: true, es2020: true },
  4. extends: [
  5. 'eslint:recommended',
  6. 'plugin:@typescript-eslint/recommended',
  7. 'plugin:react-hooks/recommended',
  8. ],
  9. ignorePatterns: ['dist', '.eslintrc.cjs'],
  10. parser: '@typescript-eslint/parser',
  11. plugins: ['react-refresh'],
  12. rules: {
  13. "@typescript-eslint/no-explicit-any": ["off"],
  14. 'react-refresh/only-export-components': [
  15. 'warn',
  16. { allowConstantExport: true },
  17. ],
  18. },
  19. }