rimworld-mod-template/.vscode/settings.json
2024-10-16 14:11:05 +02:00

37 lines
1.3 KiB
JSON

{
// "explorer.excludeGitIgnore": true,
"files.exclude": {
".direnv": true,
".vscode/obj": true,
"*/Assemblies/": true,
"1.4": true
},
"files.readonlyInclude": {
"log/rimworld.log": true,
"About/About.xml": true
},
"[xml]": {
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "off"
}
},
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
}
},
"csharp.inlayHints.enableInlayHintsForImplicitObjectCreation": true,
"csharp.inlayHints.enableInlayHintsForImplicitVariableTypes": true,
"csharp.inlayHints.enableInlayHintsForLambdaParameterTypes": true,
"csharp.inlayHints.enableInlayHintsForTypes": true,
"dotnet.inlayHints.enableInlayHintsForIndexerParameters": true,
"dotnet.inlayHints.enableInlayHintsForLiteralParameters": true,
"dotnet.inlayHints.enableInlayHintsForObjectCreationParameters": true,
"dotnet.inlayHints.enableInlayHintsForOtherParameters": true,
"dotnet.inlayHints.enableInlayHintsForParameters": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatDifferOnlyBySuffix": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatMatchArgumentName": true,
"dotnet.inlayHints.suppressInlayHintsForParametersThatMatchMethodIntent": true
}