From 13a04462fdac99a28d53cf2a54e262e5c4cf80b4 Mon Sep 17 00:00:00 2001 From: Paul Schreiber Date: Mon, 29 Jul 2024 12:24:09 -0400 Subject: [PATCH] chore: add .editorconfig --- .editorconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..660f643 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +# https://editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 80 +trim_trailing_whitespace = true + +[*.md] +max_line_length = 0 +trim_trailing_whitespace = false + +[*.json] +indent_size = 4 + +[{package.json,package-lock.json}] +indent_size = 2 + +[COMMIT_EDITMSG] +max_line_length = 0