.eslintrc.json 487 B

1234567891011121314151617181920212223242526
  1. {
  2. "env": {
  3. "es6": false,
  4. "jquery": true
  5. },
  6. "parserOptions": {
  7. "ecmaVersion": 5,
  8. "sourceType": "script"
  9. },
  10. "extends": "../.eslintrc.json",
  11. "rules": {
  12. // Best Practices
  13. "no-magic-numbers": "off",
  14. "vars-on-top": "off",
  15. // Stylistic Issues
  16. "spaced-comment": "off",
  17. // ECMAScript 6
  18. "no-var": "off",
  19. "object-shorthand": "off",
  20. "prefer-arrow-callback": "off",
  21. "prefer-template": "off",
  22. "prefer-rest-params": "off"
  23. }
  24. }