14 lines
425 B
INI
14 lines
425 B
INI
# Neon Sprawl — shared editor and analyzer settings (C# server).
|
|
# Pair with Directory.Build.props (TreatWarningsAsErrors + EnforceCodeStyleInBuild).
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.cs]
|
|
# Redundant usings duplicate GlobalUsings.cs / implicit usings (CS8019 / IDE0005).
|
|
dotnet_diagnostic.IDE0005.severity = warning
|
|
dotnet_diagnostic.CS8019.severity = warning
|