.jshintrc 734 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "bitwise": false,
  3. "curly": true,
  4. "eqeqeq": true,
  5. "forin": true,
  6. "funcscope": true,
  7. "futurehostile": true,
  8. "globals": {
  9. "Config": true,
  10. "cryptolib": true,
  11. "cryptolibPolicies": true,
  12. "cryptoPRNG": true,
  13. "forge": true,
  14. "module": true,
  15. "exports": true,
  16. "require": true,
  17. "process": true
  18. },
  19. "immed": true,
  20. "indent": 4,
  21. "iterator": true,
  22. "latedef": "false",
  23. "laxbreak": true,
  24. "maxcomplexity": 0,
  25. "maxdepth": 10,
  26. "maxparams": 20,
  27. "maxstatements": 100,
  28. "newcap": true,
  29. "noempty": true,
  30. "noarg": true,
  31. "nonbsp": true,
  32. "nonew": true,
  33. "notypeof": true,
  34. "strict": true,
  35. "undef": true,
  36. "unused": true,
  37. "browser": true,
  38. "jasmine": true,
  39. "jquery": true
  40. }