.eslintrc 671 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "parser": "@typescript-eslint/parser",
  3. "extends": [
  4. "standard",
  5. "plugin:prettier/recommended",
  6. "prettier/standard",
  7. "prettier/react",
  8. "plugin:@typescript-eslint/eslint-recommended"
  9. ],
  10. "env": {
  11. "node": true
  12. },
  13. "parserOptions": {
  14. "ecmaVersion": 2020,
  15. "ecmaFeatures": {
  16. "legacyDecorators": true,
  17. "jsx": true
  18. }
  19. },
  20. "settings": {
  21. "react": {
  22. "version": "18"
  23. }
  24. },
  25. "rules": {
  26. "space-before-function-paren": 0,
  27. "react/prop-types": 0,
  28. "react/jsx-handler-names": 0,
  29. "react/jsx-fragments": 0,
  30. "react/no-unused-prop-types": 0,
  31. "no-unused-vars": 0,
  32. "import/export": 0
  33. }
  34. }