問題
webstorm 的縮進(jìn)規(guī)則和 eslint-vue 的沖突了
- webstorm格式化:
<script>
exports default {
}
</script>
- eslint-vue:
<script>
exports default {
}
</script>
script 標(biāo)簽內(nèi)第一層不能有縮進(jìn),惡心到我了...看見嘩嘩嘩的警告不能忍
找了一圈也沒找到關(guān)閉的方法
解決方式
方式一(放棄縮進(jìn)):
改 Webstorm 配置好了熊锭,在 Code Style > HTML > Other > Do not indent children of:
里面加上 script
:
方式二(仍要縮進(jìn)):
升級(jí) eslint-plugin-vue 至 v4.2.1 以上 舰讹?
反正我沒成功...
總結(jié)
參考: