From b1eed6a37f7ac9b6f6bddbfb9048cdaa2721eeb5 Mon Sep 17 00:00:00 2001 From: Chaz Maschman <18593447-PailGreenPancake@users.noreply.gitlab.com> Date: Sun, 5 Nov 2023 14:12:23 +0000 Subject: [PATCH] editorconfig: Place comments on a new line, as required by version >= 0.15.0 --- .editorconfig | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 4b279abb8..7c4345e3e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,10 +10,14 @@ root = true [*] -end_of_line = lf # Unix-style newlines -charset = utf-8 # All files are in UTF-8 -insert_final_newline = true # All files end with a newline -trim_trailing_whitespace = true # No trailing whitespaces +# Unix-style newlines +end_of_line = lf +# All files are in UTF-8 +charset = utf-8 +# All files end with a newline +insert_final_newline = true +# No trailing whitespaces +trim_trailing_whitespace = true [Makefile] indent_style = tab