Tests: Make Android Browser 4.0-4.3 AJAX tests green
[jquery.git] / .eslintrc-browser.json
blobffd5b64674e25091d19e660e21c8e0b7d6ccb76d
2         "root": true,
4         "extends": "jquery",
6         // Support: IE <=9 only, Android <=4.0 only
7         // The above browsers are failing a lot of tests in the ES5
8         // test suite at http://test262.ecmascript.org.
9         "parserOptions": {
10                 "ecmaVersion": 3
11         },
13         // The browser env is not enabled on purpose so that code takes
14         // all browser-only globals from window instead of assuming
15         // they're available as globals. This makes it possible to use
16         // jQuery with tools like jsdom which provide a custom window
17         // implementation.
18         "env": {},
20         "globals": {
21                 "window": true,
22                 "define": true,
23                 "module": true
24         },
26         "rules": {
27                 "strict": ["error", "function"]
28         }