这样的结果就是报
http://eslint.org/docs/rules/indent Expected indentation of 2 spaces but found 4
src\components\HelloWorld.vue:93:1
}
^
如果我这样
它就不报,显示正确,不论我规则里怎么配置indent 都不能解决 script 标签下缩进问题!ESLINT3 没有这个问题,eslint 4却会出现这个问题!
这样的结果就是报
http://eslint.org/docs/rules/indent Expected indentation of 2 spaces but found 4
src\components\HelloWorld.vue:93:1
}
^
如果我这样
它就不报,显示正确,不论我规则里怎么配置indent 都不能解决 script 标签下缩进问题!ESLINT3 没有这个问题,eslint 4却会出现这个问题!
最近脚手架搭建的都有这个问题,不知道vue是不是故意的,先安装
npm install --save-dev eslint-plugin-html
然后把.eslintrc.js 内容整体替换为下面的内容,就可以了
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true,
},
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
extends: 'standard',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
rules: {
// 关闭数组,对象最后一个元素后的逗号检查
'comma-dangle': 0,
'no-extra-semi': 0,
'new-cap': 0,
'no-new': 0,
'no-undef': 0,
'max-len': 0,
'no-useless-escape': 0,
'space-before-function-paren': [0, 'always'],//函数定义时括号前面要不要有空格
'semi': [2, 'always'],//语句强制分号结尾
'no-console': 0,// 禁止使用console
// allow async-await
'generator-star-spacing': 'off',
'no-unused-expressions': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}
这个问题我找到了一个解决的办法就是升级一下你们的eslint-loader vue-cli构建的时候用的eslint-loader是1.7.1的版本,我升级到1.9.0的时候这个问题就不会出现了,建议可以试一试
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
4 回答1.9k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
我直接在WebStorm里设置格式化时顶格