From a1d945f14f7de3612e4082105b1a0901039d779f Mon Sep 17 00:00:00 2001 From: Chris Gavin Date: Tue, 23 Jun 2020 13:31:11 +0100 Subject: [PATCH] Add a `.editorconfig` with our chosen formatting options. --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..d416e1c9e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.ts] +indent_style = space +indent_size = 2