.jshintrc 844 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "testUtils": true,
  19. "_converters": true,
  20. "MATHEMATICAL_COLLECTION_SERIALIZATION_DELIMITER": true
  21. },
  22. "immed": true,
  23. "indent": 4,
  24. "iterator": true,
  25. "latedef": "nofunc",
  26. "laxbreak": true,
  27. "maxcomplexity": 0,
  28. "maxdepth": 10,
  29. "maxparams": 20,
  30. "maxstatements": 100,
  31. "newcap": true,
  32. "noempty": true,
  33. "noarg": true,
  34. "nonbsp": true,
  35. "nonew": true,
  36. "notypeof": true,
  37. "strict": true,
  38. "undef": true,
  39. "unused": true,
  40. "browser": true,
  41. "jasmine": true,
  42. "jquery": true
  43. }