.jshintrc 342B

12345678910111213141516171819202122
  1. {
  2. "node": true,
  3. "curly": true,
  4. "eqeqeq": true,
  5. "immed": true,
  6. "newcap": true,
  7. "noarg": true,
  8. "sub": true,
  9. "undef": "nofunc",
  10. "strict": true,
  11. "white": true,
  12. "indent": 2,
  13. "trailing": true,
  14. "quotmark": "single",
  15. "validthis": true,
  16. "globals": {
  17. "describe": true,
  18. "it": true
  19. },
  20. "predef": [ "-Promise" ]
  21. }