.jshintrc 754 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "sjcl": true,
  15. "module": true,
  16. "exports": true,
  17. "require": true,
  18. "process": true
  19. },
  20. "immed": true,
  21. "indent": 4,
  22. "iterator": true,
  23. "latedef": "nofunc",
  24. "laxbreak": true,
  25. "maxcomplexity": 0,
  26. "maxdepth": 10,
  27. "maxparams": 20,
  28. "maxstatements": 100,
  29. "newcap": true,
  30. "noempty": true,
  31. "noarg": true,
  32. "nonbsp": true,
  33. "nonew": true,
  34. "notypeof": true,
  35. "strict": true,
  36. "undef": true,
  37. "unused": true,
  38. "browser": true,
  39. "jasmine": true,
  40. "jquery": true
  41. }