.eslintrc.json 698 B

12345678910111213141516171819202122232425
  1. {
  2. "root": true,
  3. "env": {
  4. "browser": true
  5. },
  6. "extends": [
  7. "eslint:recommended",
  8. "plugin:@typescript-eslint/recommended",
  9. "plugin:react/recommended",
  10. "plugin:react-hooks/recommended"
  11. ],
  12. "parser": "@typescript-eslint/parser",
  13. "plugins": ["@typescript-eslint", "prettier", "react", "react-hooks"],
  14. "settings": {
  15. "react": {
  16. "version": "detect"
  17. }
  18. },
  19. "rules": {
  20. "@typescript-eslint/ban-ts-comment": "off",
  21. "@typescript-eslint/no-explicit-any": "off",
  22. "@typescript-eslint/no-unused-vars": "off",
  23. "react/no-unescaped-entities": ["error", { "forbid": [">"] }]
  24. }
  25. }