.jshintrc 533 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "node": true,
  3. "browser": true,
  4. "esnext": true,
  5. "bitwise": true,
  6. "camelcase": true,
  7. "curly": true,
  8. "eqeqeq": true,
  9. "immed": true,
  10. "indent": 2,
  11. "latedef": true,
  12. "newcap": true,
  13. "noarg": true,
  14. "quotmark": "single",
  15. "regexp": true,
  16. "undef": true,
  17. "unused": true,
  18. "strict": true,
  19. "trailing": true,
  20. "smarttabs": false,
  21. "maxlen": 80,
  22. "maxdepth": 2,
  23. "predef": [
  24. "define",
  25. "require",
  26. "describe",
  27. "it",
  28. "xit",
  29. "before",
  30. "beforeEach",
  31. "after",
  32. "afterEach"
  33. ]
  34. }