.jshintrc 505 B

123456789101112131415161718192021222324252627
  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. "singleGroups": true,
  18. "strict": "global",
  19. "undef": true,
  20. "unused": true,
  21. "jquery": true,
  22. "globals": {
  23. "sjcl": false,
  24. "DOMPurify": false
  25. }
  26. }