Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2986b7f

Browse files
authored
Disable RCS1036 by default (#1671)
1 parent 8335340 commit 2986b7f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1668))
2020
- Fix analyzer [RCS1105](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1105) ([PR](https://github.com/dotnet/roslynator/pull/1669))
2121

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+
2227
## [4.13.1] - 2025-02-23
2328

2429
### Added

src/Analyzers.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2530,7 +2530,7 @@ if (f)
25302530
<Status>Obsolete</Status>
25312531
<ObsoleteMessage>Use RCS0063 instead</ObsoleteMessage>
25322532
<DefaultSeverity>Info</DefaultSeverity>
2533-
<IsEnabledByDefault>true</IsEnabledByDefault>
2533+
<IsEnabledByDefault>false</IsEnabledByDefault>
25342534
<Samples>
25352535
<Sample>
25362536
<Before><![CDATA[public class Foo

src/Common/DiagnosticRules.Generated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ public static partial class DiagnosticRules
980980
messageFormat: "([deprecated] Use RCS0063 instead) Remove unnecessary blank line",
981981
category: DiagnosticCategories.Roslynator,
982982
defaultSeverity: DiagnosticSeverity.Info,
983-
isEnabledByDefault: true,
983+
isEnabledByDefault: false,
984984
description: null,
985985
helpLinkUri: DiagnosticIdentifiers.Obsolete_RemoveUnnecessaryBlankLine,
986986
customTags: []);

0 commit comments

Comments
 (0)