Skip to content

Check VariableDeclarationUsageDistance

github-actions[bot] edited this page Dec 5, 2025 · 7 revisions

variable-declaration-usage-distance - Distance between a variable declaration and its first usage

Non-compliant Code Example, max distance is 5

_local a << 10
do_something_unrelated()  # distance to a is 1
do_something_unrelated()  # distance to a is 2
do_something_unrelated()  # distance to a is 3
do_something_unrelated()  # distance to a is 4
do_something_unrelated()  # distance to a is 5
show(a)                   # distance to a is 6

Options

Option Default value Description
variable-declaration-usage-distance.max-distance 5 Maximum distance between declaration and usage
variable-declaration-usage-distance.ignore-constants true Ignore declared constants

Note

This page is generated. Any changes made to this page through the wiki will be lost in the future.

Clone this wiki locally