123456789101112131415161718192021222324252627282930313233343536 |
- # NOTE: Requires **VS2019 16.7** or later
- # Rules from '3.3.0' release with 'All' analysis mode
- # Description: Rules with enabled-by-default state from '3.3.0' release with 'All' analysis mode. Rules that are first released in a version later than '3.3.0' are disabled.
- is_global = true
- global_level = -100
- # RS1034: Prefer 'IsKind' for checking syntax kinds
- dotnet_diagnostic.RS1034.severity = none
- # RS1035: Do not use APIs banned for analyzers
- dotnet_diagnostic.RS1035.severity = none
- # RS1036: Specify analyzer banned API enforcement setting
- dotnet_diagnostic.RS1036.severity = none
- # RS1037: Add "CompilationEnd" custom tag to compilation end diagnostic descriptor
- dotnet_diagnostic.RS1037.severity = none
- # RS1038: Compiler extensions should be implemented in assemblies with compiler-provided references
- dotnet_diagnostic.RS1038.severity = none
- # RS1039: This call to 'SemanticModel.GetDeclaredSymbol()' will always return 'null'
- dotnet_diagnostic.RS1039.severity = none
- # RS1040: This call to 'SemanticModel.GetDeclaredSymbol()' will always return 'null'
- dotnet_diagnostic.RS1040.severity = none
- # RS1041: Compiler extensions should be implemented in assemblies targeting netstandard2.0
- dotnet_diagnostic.RS1041.severity = none
- # RS1042: Implementations of this interface are not allowed
- dotnet_diagnostic.RS1042.severity = none
|