.jshintrc 666 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "browser": true,
  3. "bitwise":false,
  4. "curly": true,
  5. "eqnull": true,
  6. "globalstrict": true,
  7. "devel": true,
  8. "eqeqeq": true,
  9. "forin": false,
  10. "immed": true,
  11. "supernew": true,
  12. "expr": true,
  13. "indent": 2,
  14. "latedef": true,
  15. "newcap": true,
  16. "noarg": true,
  17. "noempty": true,
  18. "undef": true,
  19. "boss": true,
  20. "trailing": false,
  21. "laxbreak": true,
  22. "laxcomma": true,
  23. "sub": true,
  24. "unused": true,
  25. "maxlen": 140,
  26. "globals": {
  27. "expect": true,
  28. "it": true,
  29. "describe": true,
  30. "sinon": true,
  31. "define": true,
  32. "module": true,
  33. "beforeEach": true,
  34. "inject": true,
  35. "require": true,
  36. "setImmediate": true
  37. }
  38. }