在Prettier中,如何在VS Code的行末放置符号“>”?

时间:2019-02-11 16:34:31

标签: visual-studio-code prettier

我想在行尾添加“>”,而不是在下一行单独添加良性。 我使用Prettier格式化程序,并将VS Code的settings.json放入下一行:

  "editor.formatOnSave": true,
  "[vue]": {
    "editor.formatOnSave": true
  },
  "prettier.bracketSpacing": true

我喜欢这样格式化Vue文件:

    <my-component 
        att1="ff" 
        att2="dke">
        Text
    </mycomponent>

代替此:

<my-component 
    att1="ff" 
    att2="dke"
>Text</mycomponent>

我使用"prettier.bracketSpacing": true作为Prettier的文档说。但是什么也没发生。

0 个答案:

没有答案