.jshintrc 288 B

1234567891011121314151617181920
  1. {
  2. "node": true,
  3. "eqnull" : true,
  4. "indent": 2,
  5. "undef": true,
  6. "quotmark": "single",
  7. "maxlen": 105,
  8. "trailing": true,
  9. "newcap": true,
  10. "nonew": true,
  11. "sub": true,
  12. "globals": {
  13. "describe": true,
  14. "it": true,
  15. "before": true,
  16. "beforeEach": true,
  17. "after": true,
  18. "afterEach": true
  19. }
  20. }