Skip to content

Files

Latest commit

 

History

History
17 lines (11 loc) · 434 Bytes

whitespace-line_length.md

File metadata and controls

17 lines (11 loc) · 434 Bytes

Pattern: Line is too long

Issue: -

Description

Your source code should not contain very long lines. The default wrapping in most tools disrupts the visual structure of the code, making it more difficult to understand.

Exceptions:

  • comments
  • raw-string literals
  • #include statements
  • header guards

Further Reading