You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
silent ("Hidden in VS; as far as I know, this will show quick-fixes in the IDE, but hide the squiggles/message)
none (completely disabled, including quick-fixes)
default (the default set by the analyzer for that rule)
We could consider using the same values. Currently, we only have Error, Warning, and Info (which could be renamed to "Suggestion"; I find that a more descriptive name, and it fits the Roslyn editorconfig values).
Note that Default of course is just for configuration; analyzers should not be able to set this.
The text was updated successfully, but these errors were encountered:
The Roslyn severity levels are (showing the
.editorconfig
values below):error
warning
suggestion
("Info" in VS)silent
("Hidden in VS; as far as I know, this will show quick-fixes in the IDE, but hide the squiggles/message)none
(completely disabled, including quick-fixes)default
(the default set by the analyzer for that rule)We could consider using the same values. Currently, we only have
Error
,Warning
, andInfo
(which could be renamed to "Suggestion"; I find that a more descriptive name, and it fits the Roslyn editorconfig values).Note that
Default
of course is just for configuration; analyzers should not be able to set this.The text was updated successfully, but these errors were encountered: