Skip to content

Files

Latest commit

 

History

History
26 lines (16 loc) · 446 Bytes

SC2275.md

File metadata and controls

26 lines (16 loc) · 446 Bytes

Pattern: Command name starts with =

Issue: -

Description

This was likely not meant as a new command, but instead a continuation from a previous line.

Make sure the = is used correctly.

Example of incorrect code:

test_variable
  =value

Example of correct code:

test_variable=value

Further Reading