Root.Formatting.Length.LineLength |
Parent | Index |
Sibling aspects | FileLength |
Number of characters found in a line of code.
Taste | Meaning | Values |
---|---|---|
max_line_length |
Maximum number of character for a line. | 80, 79, 100, 120, 160 |
* bold denotes default value
This aspect does not have any sub aspects.
print('The length of this line is 38')
Too long lines make code very difficult to read and maintain.
Splitting long lines of code into multiple shorter lines whenever possible. Avoiding the usage of in-line language specific constructs whenever they result in too long lines.