my configuration below no longer works after updating prettier
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"indent_size": 2,
"end_with_newline": false,
"wrap_attributes": "force-aligned",
"wrap_attributes_indent_size": 2,
"editorconfig": true
}
}
I was looking all day and finally got it to work,
I downgraded to vetur 0.10. and prettier 1.0.0
you can downgrade via installing from the store using
https://${publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${publisher}/extension/${extension_name}/${version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage
where publisher of octref.vetur = octref
extension = vetur.
once downloaded renamed the extension from VSIXPackage to VSIX and in vsCode press f1 and find Exensions: install from vsix locate the path, wait a few seconds for it to install and reload window.
I'm not sure if any newer versions will work but this got me going for now.
update
vetur 0.11.6 works with prettier 1.0.0
**update 2"
tried to upgrade prettier to 1.1.0 however it stopped working there with vetur.
to get it working you can have latest vetur but will need to downgrade into prettier 1.0.0 via
https://esbenp.gallery.vsassets.io/_apis/public/gallery/publisher/esbenp/extension/prettier-vscode/1.0.0/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage
Same issue here.
Seems like its the latest version of prettier-vsode 1.1.2. If I disable the plugin then all works fine in .vue files.
reverted to prettier-vscode-1.0.1 and all is working again.
Hello Vetur users!
Since [email protected] we register a formatter for "vue" files ([email protected]). It seems it's interacting badly with Vetur which does the same... (and seems we are wining the formatter battle :v: )
You can disable prettier on vue files
prettier.disableLanguages: ["vue"] (restart vscode)
and continue to use Vetur's formatter which also formats the html template part of your SFC. Prettier only takes care of script and style part.
I don't know if you can do the opposite tho.
I did try setting, prettier.disableLanguages: ["vue"] but then since Vetur uses prettier, it didn't format anything else. I can try again.
@ericcirone I don't really know Vetur, but I don't think it relies on Prettier-vscode to do the formatting...
Would need some investigations.
Have you restarted vscode?
I did not reload the window, after I did that it started working correctly. Thanks @CiGit
Great, will update my posts to mention that :-)
It only appears in our readme ...
@CiGit prettier-vscode compared to Vetur
So I suggest that you specify prettier.disableLanguages: ["vue"] as a default.
For others, this is already in FAQ and answered for at least 5 times. Please search issues and read FAQ before making new issues.
I just tried prettier "vetur.format.defaultFormatter.html": "prettier" and it works for html part
@hunmar It works but has problems.
Most helpful comment
Hello Vetur users!
Since [email protected] we register a formatter for "vue" files ([email protected]). It seems it's interacting badly with Vetur which does the same... (and seems we are wining the formatter battle :v: )
You can disable prettier on
vuefilesprettier.disableLanguages: ["vue"](restart vscode)and continue to use Vetur's formatter which also formats the html template part of your SFC. Prettier only takes care of
scriptandstylepart.I don't know if you can do the opposite tho.