Tests: Skip module tests in Edge
[jquery.git] / .eslintrc-browser.json
blobc704209ab37fec1c9ee519f348f513d555f4d78a
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                 "jQuery": true,
23                 "define": true,
24                 "module": true,
25                 "noGlobal": true
26         },
28         "rules": {
29                 "strict": ["error", "function"]
30         }