From b4c22c901a37b47c22b40c9cf5413a2b4f26fcb7 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Mon, 22 Jul 2024 00:05:43 +0200 Subject: [PATCH] Add editorconfig configuration (#7761) Most editors support editorconfig or have plugins for it, its universal config for specifying whitespace/line-length rules. Especially useful for editors like Neovim who support it out of the box and dont have other concepts of per project whitespace configuration. https://editorconfig.org/ Signed-off-by: Tomas Slusny --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f3bd0059 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +[*.lua] +trim_trailing_whitespace = false +indent_style = tab +max_line_length = 120