Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 505 Bytes

SC2282.md

File metadata and controls

25 lines (15 loc) · 505 Bytes

Pattern: Variable name starts with number

Issue: -

Description

You appear to be assigning to a variable name that starts with a digit. This is not allowed: variables must start with A-Z, a-z or _.

Switch to a variable name that does not start with a digit.

Example of incorrect code:

411toppm=true

Example of correct code:

_411toppm=true

Further Reading