From 9ae8025fda63cee21fe07aec3dda844739e55154 Mon Sep 17 00:00:00 2001 From: Nick Murphy Date: Wed, 26 Aug 2026 15:30:31 -0400 Subject: [PATCH] Add an .editorconfig file --- .editorconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0513b21 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +root = true + +[*] +insert_final_newline = true +indent_style = space +charset = utf-8 +trim_trailing_whitespace = true +end_of_line = lf + +[*.py] +profile = black + +[*.rst] +indent_size = 3 +max_line_length = 72 + +[*.md] +max_line_length = 72 + +[*.{yml,yaml,toml,cff,bib}] +indent_size = 2 + +[*.{ini,html}] +indent_size = 4