Open
Description
Info
- Platform: macOS
- Vetur version:0.26.1
- VS Code version: 1.47.3
Problem
Since I upgraded Vetur from 0.25.0 to 0.26.1, after I edit and save .vue files, vscode get stuck with this promote:
even though the change is very mirror. I have to downgrade to 0.25.0 to avoid this !
local eslint version is [email protected]
here is my vsocde setting:
{
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4
}
},
"vetur.validation.template": true,
"vetur.format.options.tabSize": 4,
"vetur.format.defaultFormatter.js": "prettier-eslint",
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"vetur.format.defaultFormatter.html": "prettier",
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"vue",
"typescript",
"typescriptreact"
],
"eslint.options": {
"extensions": [
".html",
".js",
".vue",
".jsx"
]
}
}