Files
LittleTown/.editorconfig

21 lines
421 B
INI

root = true
#### .NET Coding Conventions ####
# C# files
[*.cs]
dotnet_diagnostic.IDE1006.severity = warning
dotnet_diagnostic.IDE0005.severity = error
# Exclude generated code
[src/**/Migrations/*.cs]
generated_code = true
dotnet_analyzer_diagnostic.severity = none
#### Core EditorConfig Options ####
[*]
# Indentation and spacing
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true