vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)

vscode在使用的时候回出现明明没有代码语法没有错误,但是编译就是出错,不影响程序运行,但是就是不舒服,今天我们来解决这个问题。

产生这个问题的主要原因是因为编译器的语法检查太过严格,比如缩进,注解的书写格式等等,我们把它关掉就好了。

关闭首行缩进

.eslintrc.js ------- 修改 “indent”: [“off”, 2],
vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)_第1张图片

关闭注解检查

build ----- webpack.base.conf.js – …(config.dev.useEslint ? [createLintingRule()] : []), (删除或注解掉)
vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)_第2张图片

其他解决办法

第一种.当你使用vue/cli3.0的时,有可能出现雁阵规则取消检查dve模式可以忽略

在vue.config.js中 添加 lintOnSave: false
vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)_第3张图片
vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)_第4张图片


第二种. .eslintignore 文件 添加 *.vue 取消检查dve模式可以忽略
vocode缩进/格式/红色波浪线错误 ESLint: Expected indentation of 2 spaces but found 4. (indent)_第5张图片
注意修改后要重写运行启动

你可能感兴趣的:(改错,vue,vscode,vue.js,编译器)