.eslintrc.json 426 B

123456789101112131415161718
  1. {
  2. "root": true,
  3. "env": {
  4. "browser": true,
  5. "es2020": true
  6. },
  7. "extends": [
  8. "eslint:recommended",
  9. "plugin:@typescript-eslint/recommended",
  10. "plugin:react-hooks/recommended"
  11. ],
  12. "ignorePatterns": ["dist", "node_modules"],
  13. "parser": "@typescript-eslint/parser",
  14. "plugins": ["react-refresh"],
  15. "rules": {
  16. "react-refresh/only-export-components": ["warn", { "allowConstantExport": true }]
  17. }
  18. }