.jshintrc 601 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "node": true,
  3. "esnext": true,
  4. "bitwise": true,
  5. "curly": true,
  6. "eqeqeq": true,
  7. "eqnull": true,
  8. "immed": true,
  9. "latedef": "nofunc",
  10. "newcap": false,
  11. "noarg": true,
  12. "undef": true,
  13. "strict": false,
  14. "trailing": true,
  15. "smarttabs": true,
  16. "indent": 2,
  17. "white": false,
  18. "quotmark": "single",
  19. "laxbreak": true,
  20. "globals" : {
  21. /* MOCHA */
  22. "describe" : false,
  23. "it" : false,
  24. "before" : false,
  25. "beforeEach" : false,
  26. "after" : false,
  27. "afterEach" : false
  28. }
  29. }