diff options
author | Simon Ser <contact@emersion.fr> | 2022-01-20 15:09:15 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-01-20 15:09:15 +0100 |
commit | cfba4c634497949d490fb8a72f457ee5c809de09 (patch) | |
tree | 94c28d7530dac754f5e06d1b94c4a161ba05a5a5 /.editorconfig | |
parent | d8d30463ac3c094b243369761b70f21ff9c59ab9 (diff) |
editorconfig: set max_line_length
See [1]. CONTRIBUTING.md says:
> Try to keep your lines under 80 columns, but you can go up to 100 if it
> improves readability.
[1]: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index f392d812..9dcb30d7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,7 @@ charset = utf-8 trim_trailing_whitespace = true indent_style = tab indent_size = 4 +max_line_length = 80 [*.xml] indent_style = space |