.eslintrc 360 B

123456789101112131415161718
  1. {
  2. // Support: IE <=9 only, Android <=4.0 only
  3. // The above browsers are failing a lot of tests in the ES5
  4. // test suite at http://test262.ecmascript.org.
  5. "parserOptions": {
  6. "ecmaVersion": 3
  7. },
  8. "globals": {
  9. "window": true,
  10. "jQuery": true,
  11. "define": true,
  12. "module": true,
  13. "noGlobal": true
  14. },
  15. "rules": {
  16. "strict": ["error", "function"]
  17. }
  18. }