打开项目根上下的.eslintrc.js
,将rules
节点中添加以下配置项。
rules: { ‘vue/script-indent‘: [‘error‘, 2, {‘baseIndent‘: 1}] }
其中第1个2
是指统一缩进2个空格,第2个1
是指1倍缩进。
另外需要添加以下节点,与rules
同级:
overrides: [ { ‘files‘: [‘*.vue‘], ‘rules‘: { ‘indent‘: ‘off‘ } } ]
注:这里是针对eslint的4.15.0
版本。
彻底解决eslint与webstorm针对vue的script标签缩进处理方式冲突问题
原文:https://www.cnblogs.com/java-arthur/p/10936545.html