From acd1f62cc937472c1004ce27a90702dc5c40d345 Mon Sep 17 00:00:00 2001 From: nsx1luke Date: Tue, 15 Apr 2025 11:09:57 +0000 Subject: [PATCH] Add .editorconfig --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c06b44d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +tab_width = 4 +trim_trailing_whitespace = true + +[*.py] +max_line_length = 200 + +[*.yml] +tab_width = 2 + +[{Makefile,Makefile.am,Makefile.in}] +indent_style = tab + +[*.{diff,patch}] +trim_trailing_whitespace = false \ No newline at end of file