.jshintrc 483 B

12345678910111213141516171819202122232425262728
  1. {
  2. "bitwise": true,
  3. "camelcase": true,
  4. "curly": true,
  5. "eqeqeq": true,
  6. "forin": false,
  7. "freeze": false,
  8. "immed": true,
  9. "indent": 2,
  10. "latedef": "nofunc",
  11. "newcap": true,
  12. "noarg": true,
  13. "noempty": true,
  14. "nonbsp": true,
  15. "nonew": true,
  16. "plusplus": false,
  17. "quotmark": "single",
  18. "undef": true,
  19. "unused": true,
  20. "strict": true,
  21. "maxparams": 20,
  22. "maxdepth": 5,
  23. "maxlen": 120,
  24. "scripturl": true,
  25. "node": true,
  26. "esnext": true,
  27. "jasmine": true
  28. }