.eslintrc 920 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "extends": "eslint-config-ali/react",
  3. "parser": "babel-eslint",
  4. "env": {},
  5. "globals": {
  6. "window": true
  7. },
  8. "rules": {
  9. "no-shadow": "off",
  10. "no-empty": "off",
  11. "no-useless-escape": "off",
  12. "no-template-curly-in-string": "off",
  13. "no-unused-vars": "off",
  14. "no-tabs": "off",
  15. "no-param-reassign": "off",
  16. "react/no-string-refs": "off",
  17. "react/no-unused-state": "off",
  18. "no-return-assign": "off",
  19. "no-plusplus": "off",
  20. "no-script-url": "off",
  21. "no-mixed-operators": "off",
  22. "react/jsx-indent": "off",
  23. "react/jsx-no-bind": "off",
  24. "react/forbid-prop-types": "off",
  25. "react/no-array-index-key": "off",
  26. "react/sort-comp": "off",
  27. "implicit-arrow-linebreak": "off",
  28. "prefer-const": "off",
  29. "space-before-function-paren": "off",
  30. "generator-star-spacing": "off",
  31. "wrap-iife": "off",
  32. "arrow-parens": "off",
  33. "indent": "off"
  34. }
  35. }