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>2020-04-23 13:58:39 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2020-04-24 12:39:00 +0300
commit8f8b8f5f5d89fd686007888882022e8c982c47e0 (patch)
tree5549ac56f8d7482ef33e29092ea0d71f875de1c6 /.editorconfig
parent0520ec9f90e12187048456616cf3ba3489f1b9e6 (diff)
editorconfig: Add configuration for markdown files
While there is no real need to configure indentantion for Markdown files, it makes sense to configure the maximum line width. A quick survey suggested that many of our existing documents fit into a maximum line width of 80 characters, so let's use that value.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 108807698..ddfa03bda 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -17,6 +17,9 @@ indent_style = tab
indent_size = 8
tab_width = 8
+[**.md]
+max_line_length = 80
+
[**.proto]
indent_style = space
indent_size = 2