Advertisement
Guest User

Untitled

a guest
May 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. {
  2. "extends": [
  3. "eslint:recommended",
  4. "plugin:import/errors",
  5. "plugin:react/recommended",
  6. "plugin:jsx-a11y/recommended",
  7. "prettier",
  8. "prettier/react"
  9. ],
  10. "rules": {
  11. "react/prop-types": 0,
  12. "no-console": 1,
  13. "react-hooks/rules-of-hooks": 2,
  14. "react-hooks/exhaustive-deps": 1
  15. },
  16. "plugins": [
  17. "react",
  18. "import",
  19. "jsx-a11y",
  20. "react-hooks"
  21. ],
  22. "parserOptions": {
  23. "ecmaVersion": 2018,
  24. "sourceType": "module",
  25. "ecmaFeatures": {
  26. "jsx": true
  27. }
  28. },
  29. "env": {
  30. "es6": true,
  31. "browser": true,
  32. "node": true
  33. },
  34. "settings": {
  35. "react": {
  36. "version": "detect"
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement