From 6eaadabeb50bf533d411c48944ae45a1a18a4ed8 Mon Sep 17 00:00:00 2001 From: chee Date: Mon, 8 Nov 2021 12:32:02 +0000 Subject: [PATCH] backstage: add editor config --- .editorconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..efdcb202d2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[app.json] +indent_style = space +indent_size = 2 + +[*.rb] +indent_style = space +indent_size = 2 + +[*.yml] +indent_style = space +indent_size = 2 + +[*.yaml] +indent_style = space +indent_size = 2