From 2cdfdc3a4935673ddf85ecee34467d3ec4392624 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 29 Mar 2023 16:56:11 +0200 Subject: [PATCH] Bug 33358: Do not use .editorconfig for vue files Using vscodium I noticed that the settings set in the editor were not used (for instance to not add semi colons at the end of the lines). This is because they get ignored when a .editorconfig exists. I didn't find the syntax "all but vue files", but it would be better than listing the different extensions. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index b0ea8b81181..0c848e0439a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,7 @@ # top-most EditorConfig file (http://editorconfig.org) root = true -[*] +[*.pl,*.pm,*.tt,*.inc,*.js] # Unix-style newlines with a newline ending every file end_of_line = lf insert_final_newline = true -- 2.25.1