-
Notifications
You must be signed in to change notification settings - Fork 10
VSCode Settings and Extensions
Valk edited this page Jul 31, 2025
·
1 revision
Removed from repo but will be preserved here just in case.
.vscode/settings.json
{
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.gitattributes": true,
"**/.gitmodules": true,
"**/.runsettings": true,
"**/project.godot": true,
"**/.vs": true,
"**/*.cfg": true,
"**/*.cmd": true,
"**/*.import": true,
"**/*.sln": true,
"**/*.txt": true,
"**/*.uid": true,
"**/bin": true,
"**/obj": true,
"**/LICENSE": true,
"**/README.md": true
},
"cscurlyformatter.autoTabIndentation": false,
"csharpextensions.useFileScopedNamespace": true,
"csharpextensions.privateMemberPrefix": "_",
}
.vscode/extensions.json
{
"recommendations": [
"ms-dotnettools.vscode-dotnet-runtime",
"ericgomez.breakpoint-highlight",
"ms-dotnettools.csharp",
"Ironcutter24.cscurlyformatter",
"ms-dotnettools.csdevkit",
"kreativ-software.csharpextensions",
"neikeq.godot-csharp-vscode",
"ms-vscode.mono-debug"
]
}