Adds VSCode configuration files for extensions and settings

Introduces new extensions.json and settings.json files to recommend
useful VSCode extensions and configure JSON schemas, word wrap, and
default formatters for XML files. This enhances the development
environment for better productivity and consistency.
This commit is contained in:
2026-04-16 15:50:19 +03:00
parent 4913ab7ecf
commit ec165d1425
4 changed files with 54 additions and 28 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"recommendations": [
"EditorConfig.EditorConfig",
"mhutchie.git-graph",
"ms-dotnettools.csdevkit",
"ms-vscode-remote.remote-containers",
"seatonjiang.gitmoji-vscode",
"redhat.vscode-xml"
]
}
+20
View File
@@ -0,0 +1,20 @@
{
"json.schemas": [
{
"fileMatch": [
"xunit.runner.json"
],
"url": "https://xunit.net/schema/current/xunit.runner.schema.json"
},
{
"fileMatch": [
"stylecop.json"
],
"url": "https://raw.githubusercontent.com/bjornhellander/NewStyleCopAnalyzers/refs/heads/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json"
}
],
"editor.wordWrap": "on",
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
}
}