.jshintrc 345 B

123456789101112131415161718192021
  1. {
  2. "curly": true,
  3. "eqeqeq": true,
  4. "newcap": true,
  5. "noarg": true,
  6. "noempty": true,
  7. "nonew": true,
  8. "sub": true,
  9. "validthis": true,
  10. "undef": true,
  11. "trailing": true,
  12. "boss": true,
  13. "eqnull": true,
  14. "strict": true,
  15. "immed": true,
  16. "expr": true,
  17. "latedef": "nofunc",
  18. "quotmark": "single",
  19. "indent": 2,
  20. "node": true
  21. }