Message ID | 20240122201420.72802-1-carenas@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [RFC] editorconfig: limit code lines to 80 characters | expand |
Carlo Marcelo Arenas Belón <carenas@gmail.com> writes: > Since 6f9beef335 (editorconfig: provide editor settings for Git developers, > 2018-10-08) a multi editor/IDE configuration file has been provided to help > developers follow Documentation/CodingGuidelines. > > The settings are also supposed to mirror what is found in .clang-format, but > the "ColumnLimit: 80" setting wasn't included, so correct that. > --- > .editorconfig | 1 + > 1 file changed, 1 insertion(+) Sounds quite straight-forward to me.
diff --git a/.editorconfig b/.editorconfig index f9d819623d..c6d7815c80 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,7 @@ insert_final_newline = true [*.{c,h,sh,perl,pl,pm,txt}] indent_style = tab tab_width = 8 +max_line_length = 80 [*.py] indent_style = space