From f2cc0fd7f46b3012834c2b5d3e63bd52a0b26a33 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Wed, 22 Jan 2025 13:10:53 -0800 Subject: [PATCH] Add EditorConfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7453572 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +trim_trailing_whitespace = true + +[*.py] +indent_size = 4 + +[*.toml] +indent_size = 2