You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": [
  3. "react-app",
  4. "airbnb",
  5. "prettier"
  6. ],
  7. "plugins": [
  8. "react",
  9. "react-hooks",
  10. "security"
  11. ],
  12. "rules": {
  13. "react/jsx-filename-extension": "off",
  14. "react/jsx-props-no-spreading": "off",
  15. "react/button-has-type": "off",
  16. "react/require-default-props": "off",
  17. "import/no-extraneous-dependencies": "off",
  18. "import/prefer-default-export": "off",
  19. "consistent-return": "off",
  20. "no-shadow": "off",
  21. "no-use-before-define": "off",
  22. "no-template-curly-in-string": "off",
  23. "react-hooks/exhaustive-deps": "warn",
  24. "prettier/prettier": ["error", {
  25. "endOfLine":"auto"
  26. }]
  27. }
  28. }