mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-21 20:35:58 +01:00
Relax 80 column limit
80 cols is a bit short. Linux uses a soft 100 limit, let's do the same.
This commit is contained in:
parent
b97ef59393
commit
01103e1d99
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
max_line_length = 80
|
max_line_length = 100
|
||||||
|
|
||||||
[*.xml]
|
[*.xml]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
|
|
@ -169,7 +169,7 @@ Try to break the line in the place which you think is the most appropriate.
|
||||||
|
|
||||||
### Line Length
|
### Line Length
|
||||||
|
|
||||||
Try to keep your lines under 80 columns, but you can go up to 100 if it
|
Try to keep your lines under 100 columns, but you can break this rule if it
|
||||||
improves readability. Don't break lines indiscriminately, try to find nice
|
improves readability. Don't break lines indiscriminately, try to find nice
|
||||||
breaking points so your code is easy to read.
|
breaking points so your code is easy to read.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue