.jshintrc 411 B

123456789101112131415161718192021222324
  1. {
  2. "asi": false,
  3. "expr": true,
  4. "loopfunc": true,
  5. "curly": false,
  6. "evil": true,
  7. "white": true,
  8. "undef": true,
  9. "browser": true,
  10. "node": true,
  11. "trailing": true,
  12. "indent": 4,
  13. "latedef": true,
  14. "newcap": true,
  15. "predef": [
  16. "require",
  17. "__dirname",
  18. "process",
  19. "exports",
  20. "console",
  21. "Buffer",
  22. "module"
  23. ]
  24. }