.jshintrc 437 B

1234567891011121314151617181920212223242526
  1. {
  2. "node": true,
  3. "esnext": true,
  4. "bitwise": true,
  5. "camelcase": true,
  6. "curly": true,
  7. "eqeqeq": true,
  8. "immed": true,
  9. "indent": 2,
  10. "latedef": true,
  11. "newcap": true,
  12. "noarg": true,
  13. "quotmark": "single",
  14. "regexp": true,
  15. "undef": true,
  16. "unused": true,
  17. "strict": true,
  18. "trailing": true,
  19. "smarttabs": true,
  20. "globals": {
  21. "it": true,
  22. "describe": true,
  23. "beforeEach": true,
  24. "afterEach": true
  25. }
  26. }