From cd53dfc5334bcf2dc77bfa99fa7aabeeea423326 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Thu, 26 May 2022 12:20:36 +1000 Subject: [PATCH] ci: fix editorconfig (#3436) This adjusts the editorconfig to be more reflective of the current style. --- .editorconfig | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 081120a69..0ec049765 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,14 @@ +root = true + [*] -indent_style = space -indent_size = 2 +indent_style = tab +indent_size = 4 trim_trailing_whitespace = true +end_of_line = lf +insert_final_newline = true + +[web/**] +indent_style = space + +[{web/package.json,web/pnpm-lock.yaml}] +indent_size = 2