You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
436 B

5 years ago
5 years ago
  1. {
  2. "laxcomma": true,
  3. "laxbreak": true,
  4. "sub": true,
  5. "curly": true,
  6. "eqeqeq": true,
  7. "iterator": true,
  8. "latedef": true,
  9. "nocomma": true,
  10. "shadow": false,
  11. "undef": true,
  12. "unused": true,
  13. "futurehostile":true,
  14. "browser": true,
  15. "predef": [
  16. "console",
  17. "define",
  18. "require",
  19. "module",
  20. "__dirname"
  21. ],
  22. "globals": {
  23. "self": true
  24. }
  25. }