From 4bc4d24e3fb37b3bc2c5c6ed35fe99240e173005 Mon Sep 17 00:00:00 2001 From: Nicolas Ettlin Date: Mon, 16 Jul 2018 11:15:33 +0200 Subject: [PATCH] Add a .editorconfig file This commit adds an .editorconfig file: it ensures that the coding conventions of DevDocs (https://github.com/freeCodeCamp/devdocs/blob/master/CONTRIBUTING.md#coding-conventions) are applied. Learn more about the .editorconfig file format: https://editorconfig.org/ --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..73db316c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true