Extended indentation rules to more file types

This reflects OpenRA ModSDK PR 189.
This commit is contained in:
Pavel Penev
2023-10-17 14:25:24 +03:00
committed by abcdefg30
parent 7515c180b9
commit 85d62f7e5e

View File

@@ -9,15 +9,11 @@ insert_final_newline = true
trim_trailing_whitespace = true
; 4-column tab indentation
[*.yaml]
indent_style = tab
indent_size = 4
; 4-column tab indentation and .NET coding conventions
[*.cs]
[*.{cs,csproj,yaml,lua,sh,ps1}]
indent_style = tab
indent_size = 4
; .NET coding conventions
#### Code Style Rules
#### https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/