From 67bc84aa1b7170612a86cf06892c49e3e062caf6 Mon Sep 17 00:00:00 2001 From: Preocts Date: Sun, 7 Sep 2025 21:04:12 -0400 Subject: [PATCH] Add .editorconfig file Trying this out. I like the idea of an editor agnostic, general config file. --- .editorconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..457148e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +# This file is for unifying the coding style for different editors and IDEs. +# It is not reqired for a project, but can be very helpful. +# More information at http://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true + +[*.py] +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true +max_line_length = 100 + +[*.md] +max_line_length = 79 +trim_trailing_whitespace = true + +[*.rst] +max_line_length = 79