From d56d3834c34c67ea1aa77d20e73e9589f69dfc5d Mon Sep 17 00:00:00 2001 From: matthewdias Date: Tue, 8 Sep 2026 22:05:26 -0500 Subject: [PATCH] Add an .editorconfig Every source file in the repo is already two-space, LF, final-newline. This states it so an editor does not have to guess. Co-Authored-By: Claude Opus 5 (1M context) --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8c52ff9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false