From e05e47745071d332ddb30a65adc6a32eec57eeeb Mon Sep 17 00:00:00 2001
From: Vasili Novikov <vasya.novikov+cm3513git@gmail.com>
Date: Fri, 22 Jan 2021 09:51:23 +0100
Subject: [PATCH] Add .editorconfig

Editorconfig is a lightweight specification that
helps maintaining consistent coding/formatting style
accross editors, especially those editors
that are not explicitly aware of Rust and rustfmt.

https://editorconfig.org/
---
 .editorconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.editorconfig b/.editorconfig
index a13173544d8..ec6e107d547 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -13,6 +13,8 @@ indent_style = space
 indent_size = 4
 
 [*.md]
+# double whitespace at end of line
+# denotes a line break in Markdown
 trim_trailing_whitespace = false
 
 [*.yml]