Don't force column length limit
dblume

dblume commited on 2023-08-18 09:52:45
Showing 1 changed files, with 3 additions and 1 deletions.


See https://lkml.org/lkml/2020/5/29/1038
... ...
@@ -30,5 +30,7 @@ IndentWidth: 4
30 30
 ContinuationIndentWidth: 8
31 31
 ConstructorInitializerIndentWidth: 8
32 32
 IndentCaseLabels: false
33
-ColumnLimit: 86
33
+# Torvalds dislikes hard column length limits too.
34
+# https://lkml.org/lkml/2020/5/29/1038
35
+ColumnLimit: 0  # https://lkml.org/lkml/2020/5/29/1038
34 36
 ...
35 37