|
| 1 | +root = true |
| 2 | + |
| 3 | +[*] |
| 4 | +charset = utf-8 |
| 5 | +indent_size = 4 |
| 6 | +indent_style = space |
| 7 | +insert_final_newline = true |
| 8 | +trim_trailing_whitespace = true |
| 9 | + |
| 10 | +[*.{yml,props,targets,csproj}] |
| 11 | +indent_size = 2 |
| 12 | + |
| 13 | +# IDE0079: Remove unnecessary suppression |
| 14 | +dotnet_remove_unnecessary_suppression_exclusions = category:ReSharper |
| 15 | + |
| 16 | +# IDE0079: Remove unnecessary suppression |
| 17 | +# dotnet_diagnostic.IDE0079.severity = none |
| 18 | + |
| 19 | +# CA2255: The 'ModuleInitializer' attribute should not be used in libraries |
| 20 | +dotnet_diagnostic.CA2255.severity = none |
| 21 | + |
| 22 | +# CS8600: Converting null literal or possible null value to non-nullable type. |
| 23 | +dotnet_diagnostic.CS8600.severity = error |
| 24 | + |
| 25 | +# CS8601: Possible null reference assignment. |
| 26 | +dotnet_diagnostic.CS8601.severity = error |
| 27 | + |
| 28 | +# CS8602: Dereference of a possibly null reference. |
| 29 | +dotnet_diagnostic.CS8602.severity = error |
| 30 | + |
| 31 | +# CS8603: Possible null reference return. |
| 32 | +dotnet_diagnostic.CS8603.severity = error |
| 33 | + |
| 34 | +# CS8604: Possible null reference argument. |
| 35 | +dotnet_diagnostic.CS8604.severity = error |
| 36 | + |
| 37 | +# CS8610: Nullability of reference types in type of parameter doesn't match overridden member. |
| 38 | +dotnet_diagnostic.CS8610.severity = error |
| 39 | + |
| 40 | +# CS8613: Nullability of reference types in return type doesn't match implicitly implemented member. |
| 41 | +dotnet_diagnostic.CS8613.severity = error |
| 42 | + |
| 43 | +# CS8614: Nullability of reference types in type of parameter doesn't match implicitly implemented member. |
| 44 | +dotnet_diagnostic.CS8614.severity = error |
| 45 | + |
| 46 | +# CS8618: Non-nullable field is uninitialized. Consider declaring as nullable. |
| 47 | +dotnet_diagnostic.CS8618.severity = error |
| 48 | + |
| 49 | +# CS8619: Nullability of reference types in value doesn't match target type. |
| 50 | +dotnet_diagnostic.CS8619.severity = error |
| 51 | + |
| 52 | +# CS8620: Argument cannot be used for parameter due to differences in the nullability of reference types. |
| 53 | +dotnet_diagnostic.CS8620.severity = error |
| 54 | + |
| 55 | +# CS8625: Cannot convert null literal to non-nullable reference type. |
| 56 | +dotnet_diagnostic.CS8625.severity = error |
| 57 | + |
| 58 | +# CS8634: The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'class' constraint. |
| 59 | +dotnet_diagnostic.CS8634.severity = error |
| 60 | + |
| 61 | +# CS8643: Nullability of reference types in explicit interface specifier doesn't match interface implemented by the type. |
| 62 | +dotnet_diagnostic.CS8643.severity = error |
| 63 | + |
| 64 | +# CS8653: A default expression introduces a null value for a type parameter. |
| 65 | +dotnet_diagnostic.CS8653.severity = error |
| 66 | + |
| 67 | +# CS8714: The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint. |
| 68 | +dotnet_diagnostic.CS8714.severity = error |
| 69 | + |
| 70 | +# IDE0059: Unnecessary assigment of a value |
| 71 | +dotnet_diagnostic.IDE0059.severity = none |
| 72 | + |
| 73 | +# IDE0060: Remove unused parameter |
| 74 | +dotnet_diagnostic.IDE0060.severity = none |
0 commit comments