From 13d3297210224559c932e718e3ad02d8d15f3ee0 Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Thu, 4 May 2023 12:03:22 +0000 Subject: [PATCH] Bug 33358: Do not use .editorconfig for vue files I looked at the docs for editorconfig and I think I found the right syntax to achieve what we want. Correct me, if I'm wrong. To test: 1. Try this pattern on every filetype we use. 2. Assert it respects the rules. 3. Sign off. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index b0ea8b8118..1527c53f43 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,7 @@ # top-most EditorConfig file (http://editorconfig.org) root = true -[*] +[{*.*,!*.vue}] # Unix-style newlines with a newline ending every file end_of_line = lf insert_final_newline = true -- 2.30.2