.eslintrc.js 914 B

12345678910111213141516171819202122232425262728293031323334353637
  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. globals: {
  22. "ol": true,
  23. "UsbPhone": true,
  24. "BMap": true
  25. },
  26. // add your custom rules here
  27. rules: {
  28. // allow async-await
  29. 'generator-star-spacing': 'off',
  30. // allow debugger during development
  31. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  32. // "no-eval": 1,
  33. // "no-unused-vars": 1,
  34. }
  35. }