Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "parser": "babel-eslint",
  3. "env": {
  4. "browser": true,
  5. "node": true
  6. },
  7. "parserOptions": {
  8. "ecmaFeatures": {
  9. "jsx": true
  10. }
  11. },
  12. "extends": ["eslint:recommended", "plugin:react/recommended"],
  13. "plugins": [
  14. "react"
  15. ],
  16. "rules": {
  17. "semi": [2, "never"],
  18. "strict": 0,
  19. "quotes": 1,
  20. "no-unused-vars": 1,
  21. "no-multi-spaces": 1,
  22. "camelcase": 1,
  23. "no-use-before-define": [2,"nofunc"],
  24. "no-underscore-dangle": 0,
  25. "no-unused-expressions": 1,
  26. "comma-dangle": 0,
  27. "no-console": ["error", { allow: ["warn", "error"] }],
  28. "react/jsx-no-bind": 1,
  29. "react/display-name": 0
  30. }
  31. }