You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
475B

  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. "undef": true,
  11. "unused": true,
  12. "sub": true,
  13. // Support: IE < 10, Android < 4.1
  14. // The above browsers are failing a lot of tests in the ES5
  15. // test suite at http://test262.ecmascript.org.
  16. "es3": true,
  17. "globals": {
  18. "window": true,
  19. "JSON": false,
  20. "jQuery": true,
  21. "define": true,
  22. "module": true,
  23. "noGlobal": true
  24. }
  25. }