This commit is contained in:
John Spinella 2023-01-05 16:20:24 -05:00
Родитель e91bcc93e9
Коммит cc5d50421b
2 изменённых файлов: 37 добавлений и 0 удалений

18
.vscode/extensions.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,18 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-vscode-remote.vscode-remote-extensionpack",
"davidanson.vscode-markdownlint",
"github.vscode-pull-request-github",
"ms-azuretools.vscode-bicep",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
]
}

19
.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,19 @@
{
"[terraform]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false
},
"shellcheck.enableQuickFix": true,
"markdownlint.config": {
"default": true,
"MD013": {
"line_length": 400
},
"MD029": false
},
"terminal.integrated.scrollback": 10000
}