Attributes: Refactor val(): don't strip carriage return, isolate IE workarounds
[jquery.git] / .eslintrc-browser.json
blob127fc6ce88480555c48dda851f81525dc455396e
2         "root": true,
4         "extends": "jquery",
6         "parserOptions": {
7                 "ecmaVersion": 5
8         },
10         // The browser env is not enabled on purpose so that code takes
11         // all browser-only globals from window instead of assuming
12         // they're available as globals. This makes it possible to use
13         // jQuery with tools like jsdom which provide a custom window
14         // implementation.
15         "env": {},
17         "globals": {
18                 "window": true
19         },
21         "rules": {
22                 "strict": ["error", "function"]
23         }