|
| 1 | +[*.cs] |
| 2 | + |
| 3 | +indent_style = space |
| 4 | + |
| 5 | +# SA1108: Block statements should not contain embedded comments |
| 6 | +dotnet_diagnostic.SA1108.severity = none |
| 7 | + |
| 8 | +# SA1123: Do not place regions within elements |
| 9 | +dotnet_diagnostic.SA1123.severity = none |
| 10 | + |
| 11 | +# SA1124: Do not use regions |
| 12 | +dotnet_diagnostic.SA1124.severity = none |
| 13 | + |
| 14 | +# SA1200: Using directives should be placed correctly |
| 15 | +dotnet_diagnostic.SA1200.severity = none |
| 16 | + |
| 17 | +# SA1201: Elements should appear in the correct order |
| 18 | +dotnet_diagnostic.SA1201.severity = silent |
| 19 | + |
| 20 | +# SA1205: Partial elements should declare access |
| 21 | +dotnet_diagnostic.SA1205.severity = none |
| 22 | + |
| 23 | +# SA1400: Access modifier should be declared |
| 24 | +dotnet_diagnostic.SA1400.severity = none |
| 25 | + |
| 26 | +# SA1402: File may only contains a single type |
| 27 | +dotnet_diagnostic.SA1402.severity = none |
| 28 | + |
| 29 | +# SA1403: File may only contain a single namespace |
| 30 | +dotnet_diagnostic.SA1403.severity = none |
| 31 | + |
| 32 | +# SA1502: Element should not be on a single line |
| 33 | +dotnet_diagnostic.SA1502.severity = none |
| 34 | + |
| 35 | +# SA1515: Single-line comment should be preceded by blank line |
| 36 | +dotnet_diagnostic.SA1515.severity = none |
| 37 | + |
| 38 | +# SA1516: Elements should be separated by blank line |
| 39 | +dotnet_diagnostic.SA1516.severity = none |
| 40 | + |
| 41 | +# SA1600: Elements should be documented |
| 42 | +dotnet_diagnostic.SA1600.severity = silent |
| 43 | + |
| 44 | +# SA1601: Partial elements should be documented |
| 45 | +dotnet_diagnostic.SA1601.severity = silent |
| 46 | + |
| 47 | +# SA1649: File name should match first type name |
| 48 | +dotnet_diagnostic.SA1649.severity = none |
| 49 | + |
| 50 | +# IDE0051: Remove unused private members |
| 51 | +dotnet_diagnostic.IDE0051.severity = none |
| 52 | + |
| 53 | +# CS1591: Missing XML comment for publicly visible type or member |
| 54 | +dotnet_diagnostic.CS1591.severity = silent |
| 55 | + |
| 56 | +# CA1822: Mark members as static |
| 57 | +dotnet_diagnostic.CA1822.severity = silent |
| 58 | + |
| 59 | +# CA1062: Validate arguments of public methods |
| 60 | +dotnet_diagnostic.CA1062.severity = silent |
0 commit comments