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
SA1000 should only be reported for cases where var is a keyword, though this could be optimized to simply look at cases where var is the name of a type where a variable is being defined, or possibly just to cases where var is followed by an identifier or the opening parenthesis of a parenthesized variable designator.
The text was updated successfully, but these errors were encountered:
Currently SA1000 is getting reported in code like the following:
SA1000 should only be reported for cases where
var
is a keyword, though this could be optimized to simply look at cases wherevar
is the name of a type where a variable is being defined, or possibly just to cases wherevar
is followed by an identifier or the opening parenthesis of a parenthesized variable designator.The text was updated successfully, but these errors were encountered: