Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. {
  2. "extends": [
  3. "airbnb-base"
  4. ],
  5. "env": {
  6. "es6": true,
  7. "node": true
  8. },
  9. "rules": {
  10. "arrow-body-style": [2, "always"],
  11. "brace-style": [2, "stroustrup", { "allowSingleLine": true }],
  12. "consistent-return": 0,
  13. "curly": [2, "all"],
  14. "eqeqeq": [2, "allow-null"],
  15. "new-cap": [2, { "capIsNewExceptions": ["Router"] }],
  16. "no-eq-null": 2,
  17. "no-param-reassign": 0,
  18. "strict": [2, "global"]
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement