.jshintrc 234 B

123456789101112131415
  1. {
  2. "node": true,
  3. "laxcomma": true,
  4. "indent": 2,
  5. "globalstrict": true,
  6. "maxparams": 5,
  7. "maxdepth": 3,
  8. "maxstatements": 20,
  9. "maxcomplexity": 5,
  10. "maxlen": 100,
  11. "globals": {
  12. "describe": true,
  13. "it": true
  14. }
  15. }