.eslintrc.js 502 B

1234567891011121314151617181920212223242526272829
  1. module.exports =
  2. root: true,
  3. parserOptions: {
  4. parser: 'babel-eslint'
  5. },
  6. env: {
  7. browser: true,
  8. node: true,
  9. mocha: true
  10. },
  11. globals: {
  12. "expect": true,
  13. "jQuery": false
  14. },
  15. extends: [
  16. './web/core/.eslintrc.json',
  17. 'plugin:vue/recommended',
  18. 'plugin:vue-a11y/base',
  19. 'standard'
  20. ],
  21. plugins: [
  22. 'vue',
  23. 'vue-a11y'
  24. ],
  25. rules: {
  26. 'generator-star-spacing': 'off',
  27. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  28. }
  29. }