rimworld-mod-template/.vscode/settings.json

29 lines
1.3 KiB
JSON
Raw Normal View History

2024-02-11 17:28:50 +01:00
{
// "explorer.excludeGitIgnore": true,
"files.exclude": {
".direnv": true,
2024-02-11 20:13:25 +01:00
".vscode/obj": true,
"*/Assemblies/": true,
2024-02-11 17:28:50 +01:00
},
"files.readonlyInclude": {
2024-02-11 20:13:25 +01:00
"log/rimworld.log": true,
"About/About.xml": true,
2024-02-11 20:13:25 +01:00
},
"omnisharp.organizeImportsOnFormat": true,
"dotnet.inlayHints.enableInlayHintsForParameters": true,
"dotnet.inlayHints.enableInlayHintsForLiteralParameters": true,
"dotnet.inlayHints.enableInlayHintsForIndexerParameters": true,
"dotnet.inlayHints.enableInlayHintsForObjectCreationParameters": true,
"dotnet.inlayHints.enableInlayHintsForOtherParameters": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatDifferOnlyBySuffix": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatMatchMethodIntent": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatMatchArgumentName": true,
"csharp.inlayHints.enableInlayHintsForTypes": true,
"csharp.inlayHints.enableInlayHintsForImplicitVariableTypes": true,
"csharp.inlayHints.enableInlayHintsForLambdaParameterTypes": true,
"csharp.inlayHints.enableInlayHintsForImplicitObjectCreation": true,
2024-04-04 22:10:14 +02:00
"csharp.suppressDotnetInstallWarning": true,
"csharp.suppressDotnetRestoreNotification": true,
"dotnet.server.useOmnisharp": true,
"omnisharp.enableLspDriver": false
2024-02-11 17:28:50 +01:00
}