Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

45 wiersze
841 B

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