Vue 设置 Script 标签首层不缩进

问题

webstorm 的缩进规则和 eslint-vue 的冲突了

  • webstorm格式化:

  • eslint-vue:

script 标签内第一层不能有缩进,恶心到我了...看见哗哗哗的警告不能忍
找了一圈也没找到关闭的方法

解决方式

方式一(放弃缩进):
改 Webstorm 配置好了,在 Code Style > HTML > Other > Do not indent children of: 里面加上 script

Vue 设置 Script 标签首层不缩进_第1张图片

方式二(仍要缩进)
升级 eslint-plugin-vue 至 v4.2.1 以上 ?
反正我没成功...

总结

参考:

  • Request to allow vue component js to optionally start at an indentation level of 1 when wrapped in #118
  • script-indent make me crazy!!!!!!! #362
  • enforce consistent indentation in

你可能感兴趣的:(Vue 设置 Script 标签首层不缩进)