autolint.js 412 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. paths: [
  3. "lib/*.js",
  4. "test/*.js"
  5. ],
  6. linterOptions: {
  7. node: true,
  8. browser: true,
  9. plusplus: true,
  10. vars: true,
  11. nomen: true,
  12. forin: true,
  13. sloppy: true,
  14. eqeq: true,
  15. predef: [
  16. "_",
  17. "define",
  18. "assert",
  19. "refute",
  20. "buster"
  21. ]
  22. }
  23. };