赞
踩
semi:false 可视化不加分号
singleQuote:true 单引号替换双引号
我这里没有生效 不知到为什么
lintOnSave: false /* 关闭语法检查 */ 我使用这个关闭eslint 所以我删除这个重启
之后报错 ,复制eslint语法错误
在这个配置文件中,禁用语法规则
让那个值=0
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: [
- 'plugin:vue/essential',
- '@vue/standard'
- ],
- parserOptions: {
- parser: '@babel/eslint-parser'
- },
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'space-before-blocks': 0,
- 'eol-last': 0,
- indent: 0,
- 'keyword-spacing': 0,
- 'object-curly-spacing': 0,
- 'spaced-comment': 0,
- 'vue/multi-word-component-names': 0,
- 'space-infix-ops': 0,
- 'no-multi-spaces': 0,
- 'comma-spacing': 0,
- 'key-spacing': 0,
- 'space-before-function-paren': 0,
- 'arrow-spacing':0,
- 'block-spacing':0,
- semi:0,
- 'no-trailing-spaces':0,
- 'comma-dangle':0
-
- }
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。