diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-25 23:45:39 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-26 20:40:02 +0900 |
commit | e018fb6f61ad5746e845721e2850ae2f97e328c7 (patch) | |
tree | 10942658594d26042c4971b5bd1259e2d7399225 | |
parent | a6dde24bff7a1e27fc30ad6c90c0ac7129f97711 (diff) | |
download | guix-e018fb6f61ad5746e845721e2850ae2f97e328c7.tar.gz guix-e018fb6f61ad5746e845721e2850ae2f97e328c7.zip |
.editorconfig: Adjust max_line_length to 80 columns.
The maximum column width should be 80 according to our coding style
conventions (https://mumble.net/~campbell/scheme/style.txt), referenced
in (info "(guix) Formatting Code").
* .editorconfig (max_line_length): Set to 80.
Change-Id: I130078a411b5673a22a7bd80b1d847a503e22835
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index bc68ff24c8..1a8a4db80e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,7 +7,7 @@ charset = utf-8 trim_trailing_whitespace = true [*.{c,h,cpp,hpp,ac,am,m4,el,scm}{,.in}] -max_line_length = 85 +max_line_length = 80 [*.{c,h,cpp,hpp,ac,m4,el,scm}{,.in}] indent_style = space |