From c3ad292fe199762e0b1de1f1e6e25533e87a040d Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Tue, 19 May 2020 21:50:38 +0900 Subject: [PATCH] Create .editorconfig editorconfig is always useful to have to help ensure consistent code formatting. This config provides good defaults and is copied from: https://github.com/twbs/bootstrap/blob/master/.editorconfig --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f29d257c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true