.eslintrc.js 791 B

1234567891011121314151617181920212223242526272829
  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: [
  19. 'vue'
  20. ],
  21. // add your custom rules here
  22. rules: {
  23. // allow async-await
  24. 'generator-star-spacing': 'off',
  25. // allow debugger during development
  26. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  27. }
  28. }