Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VSCode workspace settings cleanup #2703

Merged
merged 4 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"recommendations": ["Vue.volar", "dbaeumer.vscode-eslint"]
"recommendations": [
"Vue.volar",
"hashicorp.terraform",
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
10 changes: 6 additions & 4 deletions usdr-gost.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
"diffEditor.ignoreTrimWhitespace": false,
"editor.columnSelection": false,
"editor.find.cursorMoveOnType": true,
"eslint.debug":true,
"javascript.format.enable": false,
"editor.formatOnSaveMode": "modifications",
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
// We need to explicitly turn this off at the worksplace level to avoid
// competing user settings and workplace settings. We use VSCode's "codeActionsOnSave"
// to manage linting/fixing, but users can have other settings via "formatOnSave".
// If both are on, the editor can "fix" things that are immediately flagged as lint failures.
"editor.formatOnSave": false,
}
}
Loading