]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
toplevel: Fix syntax issue in .editorconfig
authorRichard Earnshaw <rearnsha@arm.com>
Tue, 23 Sep 2025 12:17:01 +0000 (13:17 +0100)
committerRichard Earnshaw <rearnsha@arm.com>
Tue, 23 Sep 2025 12:17:01 +0000 (13:17 +0100)
.editorconfig entries need to be a single filesystem glob pattern.

ChangeLog:

* .editorconfig: Fix glob patterns.

.editorconfig

index 9661e7e10d771d2d9e2e5050832f1ba93662e09a..af1a28411da9faf669a9e026bfd16d9e2abedad5 100644 (file)
@@ -5,14 +5,14 @@ root = true
 end_of_line = lf
 insert_final_newline = true
 
-[*.h,*.cc]
+[*.{h,cc}]
 charset = utf-8
 indent_style = tab
 indent_size = 2
 tab_width = 8
 trim_trailing_whitespace = true
 
-[Makefile*,ChangeLog*]
+[{Makefile,ChangeLog}*]
 indent_style = tab
 indent_size = 8
 trim_trailing_whitespace = true