From 01cec3ca911586c49bca74cc40227fad8f1c39d1 Mon Sep 17 00:00:00 2001 From: eikendev Date: Mon, 10 Feb 2020 11:13:02 +0100 Subject: [PATCH] Add .editorconfig file. --- .editorconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6ee44ce --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_size = 4 +trim_trailing_whitespace = true + +[*.go] +indent_style = tab + +[*.{js,ts,tsx}] +indent_style = space +quote_type = single + +[*.json] +indent_style = space + +[*.html] +indent_style = space + +[*.md] +indent_style = space +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab