1234567891011121314151617181920212223242526 |
- {
- "env": {
- "es6": false,
- "jquery": true
- },
- "parserOptions": {
- "ecmaVersion": 5,
- "sourceType": "script"
- },
- "extends": "../.eslintrc.json",
- "rules": {
- // Best Practices
- "no-magic-numbers": "off",
- "vars-on-top": "off",
- // Stylistic Issues
- "spaced-comment": "off",
- // ECMAScript 6
- "no-var": "off",
- "object-shorthand": "off",
- "prefer-arrow-callback": "off",
- "prefer-template": "off",
- "prefer-rest-params": "off"
- }
- }
|