Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:43:46 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 16:14:32 +0300
commitfafb0b64f253c44eda91e8f44a04a0c4b0c2b6b9 (patch)
tree91069489e0c3935807769ed2648f584fe76aadf9 /.editorconfig
parent670560f0b21846181f1d78de685116dde86a72e5 (diff)
editorconfig: Recommend line length for Protobuf definitions
We don't enforce any line limits in our project, but we still set up some reasonable recommendations via our EditorConfig. Let's also recommend a line length of 100 characters for Protobuf definitions, which matches the line length we have specified for Go files.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 9a7c5bb71..c8f2af68c 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -24,6 +24,7 @@ max_line_length = 80
[**.proto]
indent_style = space
indent_size = 2
+max_line_length = 100
[**.rb]
indent_size = 2