From: Richard Earnshaw Date: Tue, 23 Sep 2025 12:17:01 +0000 (+0100) Subject: toplevel: Fix syntax issue in .editorconfig X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8701893e90b7121591531faf8a72a0589f1f1d5;p=thirdparty%2Fgcc.git toplevel: Fix syntax issue in .editorconfig .editorconfig entries need to be a single filesystem glob pattern. ChangeLog: * .editorconfig: Fix glob patterns. --- diff --git a/.editorconfig b/.editorconfig index 9661e7e10d7..af1a28411da 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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