.eslintrc 522 B

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