.eslintrc.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // https://eslint.org/docs/user-guide/configuring
  2. module.exports = {
  3. root: true,
  4. env: {
  5. node: true
  6. },
  7. // 此项是用来配置标准的js风格,就是说写代码的时候要规范的写,如果你使用vs-code我觉得应该可以避免出错
  8. extends: ['plugin:vue/essential', 'eslint:recommended'],
  9. rules: {
  10. 'space-before-function-paren': [0, 'always'], //函数定义时括号前面要不要有空格
  11. // allow async-await
  12. 'generator-star-spacing': 'off', //关闭生成器函数*的前后空格
  13. // allow debugger during development
  14. 'no-trailing-spaces': 'off', // 一行结束后面不要有空格
  15. 'vue/no-parsing-error': ['off'],
  16. quotes: [1, 'single', { allowTemplateLiterals: true }],
  17. // allow debugger during development
  18. 'no-unused-vars': [
  19. 2,
  20. {
  21. // 允许声明未使用变量
  22. vars: 'local',
  23. // 参数不检查
  24. args: 'none'
  25. }
  26. ],
  27. //空行最多不能超过100行
  28. 'no-multiple-empty-lines': [0, { max: 50 }],
  29. 'no-alert': 0, //禁止使用alert confirm prompt
  30. // 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  31. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  32. },
  33. parserOptions: {
  34. parser: 'babel-eslint'
  35. }
  36. }