Guest User

Untitled

a guest
Oct 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. {
  2. "parserOptions": {
  3. "ecmaVersion": 6,
  4. "sourceType": "module",
  5. "ecmaFeatures": {
  6. "jsx": true
  7. }
  8. },
  9. "rules": {
  10. "semi": 2,
  11. "quotes": [2, "single"],
  12. "no-var": 2,
  13. "space-before-function-paren": [1, "never"],
  14. "space-before-blocks": [2, "always"],
  15. "func-style": [0, "expression"],
  16. "no-undefined": 2,
  17. "prefer-const": 0,
  18. "comma-style": 2,
  19. "indent": ["error", 2],
  20. "space-infix-ops": 2,
  21. "eqeqeq": ["error", "always"]
  22. }
  23. }
Add Comment
Please, Sign In to add comment