From fc42e11f8bde2b0cdde7498a45752176222c4c8b Mon Sep 17 00:00:00 2001 From: Ginger Wong Date: Sun, 9 Aug 2020 23:43:56 -0700 Subject: [PATCH] add starter editorconfig file --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..514cb5dac --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +tab_width = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 80 +quote_type = single +curly_bracket_next_line = true +spaces_around_operators = true +spaces_around_brackets = true