.eslintrc 479 B

12345678910111213141516171819202122232425262728
  1. {
  2. "root": true,
  3. "parser": "@typescript-eslint/parser",
  4. "env": {
  5. "es6": true,
  6. "browser": true
  7. },
  8. "plugins": [
  9. "import",
  10. "prettier",
  11. "react",
  12. "react-hooks",
  13. "@typescript-eslint"
  14. ],
  15. "extends": [
  16. "eslint:recommended",
  17. "plugin:@typescript-eslint/recommended",
  18. "plugin:prettier/recommended"
  19. ],
  20. "settings": {
  21. "react": {
  22. "version": "detect"
  23. }
  24. },
  25. "rules": {
  26. "@typescript-eslint/no-explicit-any": "off"
  27. }
  28. }