This extension pack contains a set of extensions valuable to the frontend developer experience.
- Better Comments Improve your code commenting by annotating with alert, informational, TODOs, and more!
- EditorConfig for VS Code EditorConfig Support for Visual Studio Code
- ESLint Integrates ESLint JavaScript into VS Code.
- Vetur Vue tooling for VS Code
- Vue VSCode Snippets Snippets that will supercharge your Vue workflow
Additional settings to help get ESLint and editor formatting enabled. Add following snippet to your settings.json in vscode
{
"eslint.workingDirectories": ["./frontend"],
"eslint.debug": true,
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
}
}