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.

25 lines
528 B

  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true
  5. },
  6. "extends": "eslint:recommended",
  7. "globals": {
  8. "Atomics": "readonly",
  9. "SharedArrayBuffer": "readonly"
  10. },
  11. "parserOptions": {
  12. "ecmaFeatures": {
  13. "jsx": true
  14. },
  15. "ecmaVersion": 2018,
  16. "sourceType": "module"
  17. },
  18. "plugins": [
  19. "react",
  20. "react-hooks"
  21. ],
  22. "rules": {
  23. "react-hooks/rules-of-hooks": "error",
  24. "react-hooks/exhaustive-deps": "warn"
  25. }
  26. }