We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Address existing violations of S4487: Unread "private" fields should be removed in the codebase and set severity to Info in Steeltoe.Debug.ruleset and to Warning in Steeltoe.Release.ruleset.
Info
Steeltoe.Debug.ruleset
Warning
Steeltoe.Release.ruleset
Note: The difference in severities between Debug/Release is to avoid distraction or hindrance while writing/debugging code.
To find existing violations, enable the rule (see above) and rebuild src/Steeltoe.All.sln to make them appear in the Output window.
src/Steeltoe.All.sln
To address the violations, choose from the following on a case-by-case basis:
#pragma warning disable/restore
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Address existing violations of S4487: Unread "private" fields should be removed in the codebase and set severity to
Info
inSteeltoe.Debug.ruleset
and toWarning
inSteeltoe.Release.ruleset
.Note: The difference in severities between Debug/Release is to avoid distraction or hindrance while writing/debugging code.
To find existing violations, enable the rule (see above) and rebuild
src/Steeltoe.All.sln
to make them appear in the Output window.To address the violations, choose from the following on a case-by-case basis:
Suppress the violation in code using#pragma warning disable/restore
, preceded by a justification comment if not obviousThe text was updated successfully, but these errors were encountered: