From f01d1cbb18d38d5f85cf478e48f9014c1556848e Mon Sep 17 00:00:00 2001 From: Slendi Date: Sun, 7 Dec 2025 01:51:21 +0200 Subject: [PATCH] Add editorconfig Signed-off-by: Slendi --- .editorconfig | 11 +++++++++++ src/Application.cpp | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bde959b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true + +[*.{h,c,cpp}] +insert_final_newline = false +indent_style = tab + diff --git a/src/Application.cpp b/src/Application.cpp index 0db1810..228ad73 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -119,4 +119,4 @@ auto Application::mouse_captured(bool new_state) -> void m_mouse_captured = new_state; } -} // namespace Lunar +} // namespace Lunar \ No newline at end of file