.jshintrc 317 B

1234567891011121314151617181920
  1. {
  2. "indent": 4,
  3. "node": true,
  4. "globalstrict": true,
  5. "evil": true,
  6. "unused": true,
  7. "undef": true,
  8. "newcap": true,
  9. "esnext": true,
  10. "curly": true,
  11. "eqeqeq": true,
  12. "expr": true,
  13. "predef": [
  14. "describe",
  15. "it",
  16. "beforeEach",
  17. "afterEach"
  18. ]
  19. }