Replies: 1 comment
-
Have you tried to set the
{
"editor.defaultFormatter": "esbenp.prettier-vscode"
} You can also wrap it for a specific language: {
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
} But you have to Also, In your |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! Thanks for this Extension!
I am creating a Prettier plugin (for Clojure). I can run prettier just fine from the command line, and it formats Clojure files as well as
clojure
fenced code blocks in Markdown. However, I fail to tell VS Code that the Prettier Code Formatter extension now can format Clojure files. I've read these:Frome those I seem to conclude that if I
npm install
prettier and my plugin, then this extension should pick it up. I still get this, though:I don't know what to try now. Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions