.eslintrc.js 911 B

123456789101112131415161718192021222324252627282930313233
  1. // https://eslint.org/docs/user-guide/configuring
  2. module.exports = {
  3. root: false,
  4. parserOptions: {
  5. parser: 'babel-eslint'
  6. },
  7. env: {
  8. browser: false,
  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. // 'space-before-function-paren': 0,
  28. // 'indent': 'off',
  29. // 'no-trailing-spaces': 0
  30. }
  31. }