Created
May 14, 2021 03:24
-
-
Save JBreit/610c34791568ef5d670ff1da0162bb6a to your computer and use it in GitHub Desktop.
C# Editor Config Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[*.cs] | |
# SA1309: Field names should not begin with underscore | |
dotnet_diagnostic.SA1309.severity = none | |
# SA1600: Elements should be documented | |
dotnet_diagnostic.SA1600.severity = none | |
# SA1633: File should have header | |
dotnet_diagnostic.SA1633.severity = none | |
# SA1200: Using directives should be placed correctly | |
dotnet_diagnostic.SA1200.severity = none | |
# SA1402: File may only contain a single type | |
dotnet_diagnostic.SA1402.severity = suggestion | |
# SA1101: Prefix local calls with this | |
dotnet_diagnostic.SA1101.severity = none | |
# SA0001: All diagnostics of XML documentation comments has been disabled due to the current project configuration. | |
dotnet_diagnostic.SA0001.severity = none | |
# SA1201: Elements should appear in the correct order | |
dotnet_diagnostic.SA1201.severity = none | |
# SA1204: Static elements should appear before instance elements | |
dotnet_diagnostic.SA1204.severity = none | |
# SA1413: Use trailing comma in multi-line initializers | |
dotnet_diagnostic.SA1413.severity = none | |
# SA1623: Property summary documentation should match accessors | |
dotnet_diagnostic.SA1623.severity = none |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment