.eslintrc 509 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "parser": "babel-eslint",
  3. "env": {
  4. "browser": true
  5. },
  6. "extends": [
  7. "prettier",
  8. "prettier/react"
  9. ],
  10. "plugins": [
  11. "react",
  12. "jsx-a11y",
  13. "import",
  14. "prettier"
  15. ],
  16. "globals": {
  17. "__DEV__": true
  18. },
  19. "rules": {
  20. "arrow-parens": 0,
  21. "global-require": 0,
  22. "import/prefer-default-export": 0,
  23. "no-console": 0,
  24. "no-mixed-operators": 0,
  25. "no-use-before-define": 0,
  26. "radix": 0,
  27. "react/jsx-filename-extension": 0,
  28. "react/prop-types": 0
  29. }
  30. }