.jshintrc 702 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "browser": true,
  3. "bitwise":false,
  4. "curly": true,
  5. "eqnull": true,
  6. "strict": true,
  7. "devel": true,
  8. "eqeqeq": true,
  9. "forin": false,
  10. "immed": true,
  11. "supernew": true,
  12. "expr": true,
  13. "indent": 2,
  14. "latedef": false,
  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. "Promise": true,
  28. "System": true,
  29. "expect": true,
  30. "it": true,
  31. "describe": true,
  32. "sinon": true,
  33. "define": true,
  34. "module": true,
  35. "beforeEach": true,
  36. "inject": true,
  37. "require": true,
  38. "setImmediate": true
  39. }
  40. }