.eslintrc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "extends": "airbnb",
  3. "parser": "babel-eslint",
  4. "parserOptions": {
  5. "ecmaFeatures": {
  6. "experimentalObjectRestSpread": true
  7. }
  8. },
  9. "env": {
  10. "browser": true
  11. },
  12. "rules": {
  13. "prefer-template": 0,
  14. "new-cap": 0,
  15. "no-restricted-syntax": 0,
  16. "guard-for-in": 0,
  17. "prefer-arrow-callback": 0,
  18. "func-names": 0,
  19. "react/jsx-no-bind": 0,
  20. "no-confusing-arrow": 0,
  21. "jsx-a11y/no-static-element-interactions": 0,
  22. "jsx-a11y/anchor-has-content": 0,
  23. "react/require-default-props": 0,
  24. "no-plusplus": 0,
  25. "no-mixed-operators": 0,
  26. "no-continue": 0,
  27. "no-bitwise": 0,
  28. "no-multi-assign": 0,
  29. "react/no-array-index-key": 0,
  30. "no-restricted-properties": 0,
  31. "no-prototype-builtins": 0,
  32. "jsx-a11y/href-no-hash": 0,
  33. "react/forbid-prop-types": 0,
  34. "class-methods-use-this": 0,
  35. "import/no-named-as-default": 0,
  36. "import/prefer-default-export": 0,
  37. "react/no-unescaped-entities": 0,
  38. "react/no-unused-prop-types": 0,
  39. "react/no-string-refs": 0,
  40. "indent": 0,
  41. "no-multi-spaces": 0,
  42. "padded-blocks": 0
  43. }
  44. }