From 35f1c661b096f20c58321613e4c1c5e30770d3cb Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Wed, 22 Jan 2025 15:14:38 -0800 Subject: [PATCH] Add EditorConfig (#7) --- .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