From 42f5eb7426515fbfd5339ea4de2cb0a80a9046b7 Mon Sep 17 00:00:00 2001 From: Slendi Date: Sun, 7 Dec 2025 01:59:40 +0200 Subject: [PATCH] Make sure there's a newline at the end of files Signed-off-by: Slendi --- .editorconfig | 2 +- src/Application.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index bde959b..ba47c0b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,6 +6,6 @@ end_of_line = lf trim_trailing_whitespace = true [*.{h,c,cpp}] -insert_final_newline = false +insert_final_newline = true indent_style = tab diff --git a/src/Application.cpp b/src/Application.cpp index 228ad73..0db1810 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 \ No newline at end of file +} // namespace Lunar