Guest User

Untitled

a guest
Oct 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {
  2. "parser": "babel-eslint",
  3. "extends": [
  4. "standard",
  5. "standard-react"
  6. ],
  7. "plugins": [
  8. "babel",
  9. "react",
  10. "promise"
  11. ],
  12. "env": {
  13. "browser" : true
  14. },
  15. "globals": {
  16. "__DEV__" : false,
  17. "__TEST__" : false,
  18. "__PROD__" : false,
  19. "__COVERAGE__" : false
  20. },
  21. "rules": {
  22. "key-spacing" : "off",
  23. "jsx-quotes" : [2, "prefer-single"],
  24. "max-len" : [2, 120, 2],
  25. "object-curly-spacing" : [2, "always"],
  26. "comma-dangle" : "off",
  27. "no-mixed-spaces-and-tabs" : ["error"],
  28. "indent" : [2, 4]
  29. }
  30. }
Add Comment
Please, Sign In to add comment