.eslintrc.js 439 B

12345678910111213141516171819202122
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/essential',
  8. // '@vue/standard'
  9. ],
  10. globals: {
  11. 'AMap': false,
  12. 'AMapUI': false
  13. },
  14. parserOptions: {
  15. // parser: '@babel/eslint-parser'
  16. },
  17. rules: {
  18. indent: ['off', 2],
  19. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  20. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
  21. }
  22. }