.jshintrc 554 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "predef": [
  3. "module",
  4. "require",
  5. "__dirname",
  6. "process",
  7. "console",
  8. "it",
  9. "describe",
  10. "before",
  11. "after"
  12. ],
  13. "node" : true,
  14. "es5": true,
  15. "bitwise": true,
  16. "curly": true,
  17. "eqeqeq": true,
  18. "forin": false,
  19. "immed": true,
  20. "latedef": true,
  21. "newcap": true,
  22. "noarg": true,
  23. "noempty": true,
  24. "nonew": true,
  25. "plusplus": false,
  26. "undef": true,
  27. "strict": false,
  28. "trailing": false,
  29. "globalstrict": true,
  30. "nonstandard": true,
  31. "white": true,
  32. "indent": 2,
  33. "expr": true,
  34. "onevar": false
  35. }