.eslintrc.json 698 B

1234567891011121314151617181920212223242526
  1. {
  2. "env": {
  3. "browser": true
  4. },
  5. "parser": "babel-eslint",
  6. "extends": "airbnb",
  7. "rules": {
  8. "arrow-body-style": 0,
  9. "class-methods-use-this": 0,
  10. "func-names": 0,
  11. "import/extensions": 0,
  12. "import/no-extraneous-dependencies": 0,
  13. "import/no-unresolved": 0,
  14. "jsx-a11y/anchor-is-valid":0,
  15. "jsx-a11y/no-static-element-interactions": 0,
  16. "no-param-reassign": 0,
  17. "no-plusplus": 0,
  18. "object-curly-newline": 0,
  19. "react/destructuring-assignment": 0,
  20. "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
  21. "react/no-multi-comp": 0,
  22. "react/prefer-stateless-function": 0,
  23. "react/prop-types": 0,
  24. "react/sort-comp": 0
  25. }
  26. }