-
Notifications
You must be signed in to change notification settings - Fork 468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove rulesets #6367
Remove rulesets #6367
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #6367 +/- ##
==========================================
- Coverage 96.10% 96.10% -0.01%
==========================================
Files 1361 1361
Lines 316034 316055 +21
Branches 10192 10203 +11
==========================================
+ Hits 303738 303748 +10
- Misses 9864 9874 +10
- Partials 2432 2433 +1 |
Test PR for dotnet#6367 (comment)
Test PR for dotnet#6367 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked for now as per #6375 (comment)
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
@Youssef1313 CI is now failing as expected. You may want to redo this PR from scratch. |
90809ca
to
db4f25a
Compare
@Youssef1313 Just wanted to confirm that you do see build warnings if you remove any entry in any one of the 3 globalconfig files that you added? |
Yes. Removing CA1000 from NonShipping.globalconfig: Removing CA1002 from Common.globalconfig: Also the following shows there are violations in both shipping and non-shipping projects: Removing CA1303 from Shipping.globalconfig: |
@@ -51,7 +51,8 @@ protected override void InitializeWorker(CompilationStartAnalysisContext context | |||
|
|||
private static bool IsToLowerOrToUpper(string methodName) | |||
{ | |||
return methodName == ToLowerMethodName || methodName == ToUpperMethodName; | |||
// TODO: Compare symbols instead of method name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File a tracking issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got a PR for it already #6382
<NonShipping>true</NonShipping> | ||
<IsShipping>false</IsShipping> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where are we using NonShipping
? Can you please file a separate issue to tracking consolidating NonShipping
and IsShipping
to a single property?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes #6365