fsprojects / FSharpLint

Lint tool for F#
https://fsprojects.github.io/FSharpLint/
MIT License
303 stars 73 forks source link

DRAFT: Add DisallowShadowing rule #676

Open webwarrior-ws opened 8 months ago

webwarrior-ws commented 8 months ago

Add DisallowShadowing rule and tests for it.

knocte commented 8 months ago

@webwarrior-ws please add a test for shadowing for variables that start with underscore: in this case we don't want the rule to flag them.

webwarrior-ws commented 8 months ago

@webwarrior-ws please add a test for shadowing for variables that start with underscore: in this case we don't want the rule to flag them.

Added new commit with test and changes to the rule code.