update .vscode settings and extensions

This commit is contained in:
mauwii 2023-02-17 02:55:41 +01:00
parent c134161a45
commit 3231499992
No known key found for this signature in database
GPG Key ID: D923DB04ADB3F5AB
2 changed files with 22 additions and 2 deletions

View File

@ -9,6 +9,14 @@
"ms-python.vscode-pylance",
"redhat.vscode-yaml",
"tamasfe.even-better-toml",
"eamodio.gitlens"
"eamodio.gitlens",
"foxundermoon.shell-format",
"timonwong.shellcheck",
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"yzhang.markdown-all-in-one",
"bierner.github-markdown-preview",
"ms-azuretools.vscode-docker",
"mads-hartmann.bash-ide-vscode"
]
}

14
.vscode/settings.json vendored
View File

@ -1,6 +1,6 @@
{
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.quickSuggestions": {
"strings": true
},
@ -23,6 +23,18 @@
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modificationsIfAvailable"
},
"[markdown]": {
"editor.rulers": [80],
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"editor.rulers": [88],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"evenBetterToml.formatter.alignEntries": false,