Test description.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
591 B

  1. {
  2. "settings": {
  3. "react": {
  4. "version": "detect",
  5. "pragma": "React",
  6. "fragment": "Fragment"
  7. }
  8. },
  9. "env": {
  10. "browser": true,
  11. "es2021": true
  12. },
  13. "extends": [
  14. "eslint:recommended",
  15. "plugin:react/recommended",
  16. "plugin:@typescript-eslint/recommended",
  17. "plugin:prettier/recommended"
  18. ],
  19. "parser": "@typescript-eslint/parser",
  20. "parserOptions": {
  21. "ecmaFeatures": {
  22. "jsx": true
  23. },
  24. "ecmaVersion": 12,
  25. "sourceType": "module"
  26. },
  27. "plugins": [
  28. "react",
  29. "@typescript-eslint"
  30. ],
  31. "rules": {
  32. "react/react-in-jsx-scope": "off",
  33. "react/prop-types": "off"
  34. }
  35. }