Guest User

Untitled

a guest
Dec 12th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true,
  5. "node": true,
  6. "mocha": true,
  7. "jest": true
  8. },
  9. "plugins": [
  10. "react"
  11. ],
  12. "extends": [
  13. "eslint:recommended"
  14. ],
  15. "parserOptions": {
  16. "ecmaVersion": 8,
  17. "ecmaFeatures": {
  18. "experimentalObjectRestSpread": true,
  19. "jsx": true
  20. },
  21. "sourceType": "module"
  22. },
  23. "parser": "babel-eslint",
  24. "rules": {
  25. "no-console": 0,
  26. "react/jsx-uses-react": 2,
  27. "react/jsx-uses-vars": 2,
  28. "react/react-in-jsx-scope": 2,
  29. "react/jsx-quotes": 0,
  30. "react/jsx-no-bind": "warn",
  31. "react/prop-types": 0,
  32. "react/no-multi-comp": 0,
  33. "react/jsx-boolean-value": 0,
  34. "import/default": 0,
  35. "import/no-duplicates": 0,
  36. "import/named": 0,
  37. "import/namespace": 0,
  38. "import/no-unresolved": 0,
  39. "import/no-named-as-default": 0,
  40. "no-case-declarations": 0,
  41. "semi": 0
  42. }
  43. }
Add Comment
Please, Sign In to add comment