.jshintrc 272 B

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