.jshintrc 413 B

123456789101112131415161718192021222324
  1. {
  2. // Enforcing options
  3. "eqeqeq": false,
  4. "forin": true,
  5. "indent": 4,
  6. "noarg": true,
  7. "undef": true,
  8. "trailing": true,
  9. "evil": true,
  10. "laxcomma": true,
  11. // Relaxing options
  12. "onevar": false,
  13. "asi": false,
  14. "eqnull": true,
  15. "expr": false,
  16. "loopfunc": true,
  17. "sub": true,
  18. "browser": true,
  19. "node": true,
  20. "globals": {
  21. "define": true
  22. }
  23. }