Mathieu Guindon
Mathieu Guindon
> Instead, I want to be able to ignore all occurrences across the entire > project or module without inserting any comments. I’m not referring to > disabling specific inspections...
> Currently, finding the option to set an inspection to DoNotShow by name under the settings is not straightforward. The UI does not anchor the action links from the bottom...
I changed the icon to a better-suited ❌ icon, but it instantly sets the inspection associated with the selected result, to `DoNotShow` severity, which disables it. I'll close this issue...
I think we'll end up with Excel-specific inspections in a dedicated `Rubberduck.Inspections.Excel.dll` assembly.
I wonder if this should be part of something bigger, i.e. some "code is euristically unreachable" inspection.
I'd want to flag redundant `Exit` instructions, but not only if they're the very last statement in a scope... and this requires code paths. let's keep this one for v3.
TODO see if _ShadowedDeclaration_ picks it up already, otherwise this would be in scope for 2.x
Prevents a run-time error that often confuses rookies and pasta chefs: > Resume without GoSub
*in early-bound code...
So, a parse tree inspection that finds: - instructions separator preceding the first instruction on a logical line of code (with or without a line number). - instruction separator following...