From ccec9f9ba927e4d08c90a2cee9f733193f6f0d93 Mon Sep 17 00:00:00 2001 From: Ivan Malopinsky Date: Sat, 9 Jan 2021 14:25:07 -0500 Subject: [PATCH] add EditorConfig dotfile --- .editorconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8170ef8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +# Editor config from Quickstart +# qkst.io/dotfiles/editorconfig + +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + +[*.js] +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab +indent_size = 8 + +[*.{js}] +charset = utf-8 +trim_trailing_whitespace = true