.jshintrc 575 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. /* Common */
  3. // Enforcing
  4. "eqeqeq": true,
  5. "es3": true,
  6. "latedef": true,
  7. "noarg": true,
  8. "nonew": true,
  9. "undef": true,
  10. "unused": true,
  11. /* Local */
  12. // FIXME: Deprecated, handle these with node-jscs instead.
  13. // Handled here because we still have inline overrides in some places.
  14. "camelcase": true,
  15. "nomen": true,
  16. // Enforcing
  17. "bitwise": true,
  18. "forin": false,
  19. "regexp": false,
  20. "strict": false,
  21. // Relaxing
  22. "laxbreak": true,
  23. "smarttabs": true,
  24. "multistr": true,
  25. // Environment
  26. "browser": true,
  27. "predef": [
  28. "mediaWiki",
  29. "jQuery",
  30. "QUnit"
  31. ]
  32. }