.jshintrc 501 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "boss": true,
  3. "curly": true,
  4. "eqeqeq": true,
  5. "eqnull": true,
  6. "expr": true,
  7. "immed": true,
  8. "noarg": true,
  9. "quotmark": "double",
  10. "strict": true,
  11. "undef": true,
  12. "unused": true,
  13. "sub": true,
  14. // Support: IE <=9 only, Android <=4.0 only
  15. // The above browsers are failing a lot of tests in the ES5
  16. // test suite at http://test262.ecmascript.org.
  17. "es3": true,
  18. "globals": {
  19. "window": true,
  20. "JSON": false,
  21. "jQuery": true,
  22. "define": true,
  23. "module": true,
  24. "noGlobal": true
  25. }
  26. }