2021-11-20 01:29:51 +03:00
|
|
|
{
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimFinalNewlines": true,
|
2024-01-26 21:33:00 +03:00
|
|
|
"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,
|
2024-01-05 20:51:16 +03:00
|
|
|
"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
|
|
|
}
|