commit acd1f62cc937472c1004ce27a90702dc5c40d345 Author: nsx1luke Date: Tue Apr 15 11:09:57 2025 +0000 Add .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