From c615a3fb0b882d872b038a49570c01ded9c616ab Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Mon, 20 Aug 2018 00:28:15 -0700 Subject: [PATCH] Add editorconfig (#342) --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..93fda2dd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +# Text is UTF-8 +charset = utf-8 +# Unix-style newlines +end_of_line = lf +# Newline ending every file +insert_final_newline = true +# Soft tabs +indent_style = space +# Two-space indentation +indent_size = 2 +# Trim trailing whitespace +trim_trailing_whitespace = true + +[justfile] +# Use tabs in justfile +indent_style = tab