Replies: 3 comments 6 replies
-
Please try to disable code action on save, see: https://stackoverflow.com/questions/63992430/visual-studio-code-how-to-disable-editor-codeactionsonsave |
Beta Was this translation helpful? Give feedback.
-
So to use this plugin basically we have to forgo all formatting/linting on save? Is there a doc on this somewhere? Would be helpful to get an idea of what needs to change vs Vetur since that's been the modus operandi. Otherwise, some very cool type checking happening in the templates with this plugin. Good job! @johnsoncodehk |
Beta Was this translation helpful? Give feedback.
-
Worked for me "[vue]": {
"gitlens.codeLens.scopes": ["document"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.organizeImports": false
}, |
Beta Was this translation helpful? Give feedback.
-
Just trying out this extension and I love having type checking in the Vue component templates. The only problem is that on "save" Volar takes around 10 seconds to compile and do its thing.
Am I doing something wrong? Is there a way to speed this up?
Beta Was this translation helpful? Give feedback.
All reactions