File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
- Fix analyzer [ RCS1260] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1668 ) )
20
20
- Fix analyzer [ RCS1105] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1105 ) ([ PR] ( https://github.com/dotnet/roslynator/pull/1669 ) )
21
21
22
+ ### Changed
23
+
24
+ - Disable analyzer [ RCS1036] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1036 ) by default ([ PR] ( https://github.com/dotnet/roslynator/pull/1671 ) )
25
+ - Use analyzer [ RCS0063] ( https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0063 ) instead
26
+
22
27
## [ 4.13.1] - 2025-02-23
23
28
24
29
### Added
Original file line number Diff line number Diff line change @@ -2530,7 +2530,7 @@ if (f)
2530
2530
<Status >Obsolete</Status >
2531
2531
<ObsoleteMessage >Use RCS0063 instead</ObsoleteMessage >
2532
2532
<DefaultSeverity >Info</DefaultSeverity >
2533
- <IsEnabledByDefault >true </IsEnabledByDefault >
2533
+ <IsEnabledByDefault >false </IsEnabledByDefault >
2534
2534
<Samples >
2535
2535
<Sample >
2536
2536
<Before ><![CDATA[ public class Foo
Original file line number Diff line number Diff line change @@ -980,7 +980,7 @@ public static partial class DiagnosticRules
980
980
messageFormat : "([deprecated] Use RCS0063 instead) Remove unnecessary blank line" ,
981
981
category : DiagnosticCategories . Roslynator ,
982
982
defaultSeverity : DiagnosticSeverity . Info ,
983
- isEnabledByDefault : true ,
983
+ isEnabledByDefault : false ,
984
984
description : null ,
985
985
helpLinkUri : DiagnosticIdentifiers . Obsolete_RemoveUnnecessaryBlankLine ,
986
986
customTags : [ ] ) ;
You can’t perform that action at this time.
0 commit comments