.eslintrc.passing.json 337 B

123456789101112131415
  1. {
  2. "extends": "./.eslintrc.json",
  3. "rules": {
  4. "no-shadow": "off",
  5. "no-new": "off",
  6. "no-continue": "off",
  7. "new-cap": "off",
  8. "max-len": "off",
  9. "default-case": "off",
  10. "prefer-destructuring": "off",
  11. "react/no-this-in-sfc": "off",
  12. "react/destructuring-assignment": "off",
  13. "import/named": "off"
  14. }
  15. }