vs-threading/.vscode/settings.json

26 строки
995 B
JSON
Исходник Обычный вид История

2021-11-20 01:29:51 +03:00
{
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"azure-pipelines.1ESPipelineTemplatesSchemaFile": true,
2021-11-20 01:29:51 +03:00
"omnisharp.enableEditorConfigSupport": true,
2023-06-28 00:58:44 +03:00
"omnisharp.enableRoslynAnalyzers": true,
"dotnet.completion.showCompletionItemsFromUnimportedNamespaces": true,
"dotnet.defaultSolution": "Microsoft.VisualStudio.Threading.sln",
2023-12-01 22:28:16 +03:00
"editor.formatOnSave": true,
"[xml]": {
"editor.wordWrap": "off"
2024-02-09 22:55:09 +03:00
},
// Treat these files as Azure Pipelines files
"files.associations": {
"**/azure-pipelines/**/*.yml": "azure-pipelines",
"azure-pipelines.yml": "azure-pipelines"
},
// Use Prettier as the default formatter for Azure Pipelines files.
// Needs to be explicitly configured: https://github.com/Microsoft/azure-pipelines-vscode#document-formatting
"[azure-pipelines]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
2024-02-22 01:48:10 +03:00
"editor.formatOnSave": false // enable this when they conform
2024-02-09 22:55:09 +03:00
},
2021-11-20 01:29:51 +03:00
}