1234567891011121314151617181920212223242526
  1. // https://eslint.org/docs/user-guide/configuring
  2. module.exports = {
  3. root: true,
  4. parserOptions: {
  5. parser: 'babel-eslint'
  6. },
  7. env: {
  8. browser: true
  9. },
  10. extends: [
  11. // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
  12. // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
  13. 'plugin:vue/essential',
  14. // https://github.com/standard/standard/blob/master/docs/RULES-en.md
  15. 'standard'
  16. ],
  17. // required to lint *.vue files
  18. plugins: ['vue'],
  19. // add your custom rules here
  20. rules: {
  21. // allow async-await
  22. 'generator-star-spacing': 'off',
  23. // allow debugger during development
  24. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  25. }
  26. }