Event: Make trigger(focus/blur/click) work with native handlers
[jquery.git] / .eslintrc-browser.json
blob97b5abe85251d0fdbb38b24fee74e571e4f47fbf
2         "root": true,
4         "extends": "jquery",
6         "reportUnusedDisableDirectives": true,
8         "parserOptions": {
9                 "ecmaVersion": 5
10         },
12         // The browser env is not enabled on purpose so that code takes
13         // all browser-only globals from window instead of assuming
14         // they're available as globals. This makes it possible to use
15         // jQuery with tools like jsdom which provide a custom window
16         // implementation.
17         "env": {},
19         "globals": {
20                 "window": true
21         },
23         "rules": {
24                 "one-var": ["error", {"var": "always"}],
25                 "strict": ["error", "function"]
26         }