.jshintrc 623 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "bitwise": true,
  3. "curly": true,
  4. "eqeqeq": true,
  5. "esversion": 5,
  6. "forin": true,
  7. "freeze": true,
  8. "futurehostile": true,
  9. "latedef": "nofunc",
  10. "maxcomplexity": 7,
  11. "maxdepth": 3,
  12. "maxparams": 3,
  13. "maxstatements": 100,
  14. "noarg": true,
  15. "nonbsp": true,
  16. "nonew": true,
  17. "quotmark": "single",
  18. "singleGroups": true,
  19. "strict": "global",
  20. "undef": true,
  21. "unused": true,
  22. "jquery": true,
  23. "globals": {
  24. "sjcl": false,
  25. "DOMPurify": false
  26. },
  27. "predef": {
  28. "cleanup": true,
  29. "jsc": false,
  30. "jsdom": true
  31. }
  32. }