* [PATCH] editorconfig: fix style not applying to subdirs anymore
@ 2026-03-11 7:09 Patrick Steinhardt
2026-03-11 14:16 ` Phillip Wood
0 siblings, 1 reply; 3+ messages in thread
From: Patrick Steinhardt @ 2026-03-11 7:09 UTC (permalink / raw)
To: git; +Cc: Phillip Wood
In 046e1117d5 (templates: add .gitattributes entry for sample hooks,
2026-02-13) we have added another pattern to our EditorConfig that sets
the style for our hook templates. As our templates are located in
"templates/hooks/", we explicitly specify that subdirectory as part of
the globbing pattern.
This change causes files in other subdirectories, like for example
"builtin/add.c", to not be configured properly anymore. This seems to
stem from a subtlety in the EditorConfig specification [1]:
If the glob contains a path separator (a / not inside square
brackets), then the glob is relative to the directory level of the
particular .editorconfig file itself. Otherwise the pattern may also
match at any level below the .editorconfig level.
What's interesting is that the _whole_ expression is considered to be
the glob. So when the expression used is for example "{*.c,foo/*.h}",
then it will be considered a single glob, and because it contains a path
separator we will now anchor "*.c" matches to the same directory as the
".editorconfig" file.
Fix this issue by splitting out the configuration for hook templates
into a separate section. It leads to a tiny bit of duplication, but the
alternative would be something like the following (note the "{,**/}"):
[{{,**/}*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,{,**/}Makefile,templates/hooks/*.sample}]
indent_style = tab
tab_width = 8
This starts to become somewhat hard to read, so the duplication feels
like the better tradeoff.
[1]: https://spec.editorconfig.org/#glob-expressions
Signed-off-by: Patrick Steinhardt <ps@pks.im>
---
Hi,
this fixes a small regression in our EditorConfig introduced in
046e1117d5 (templates: add .gitattributes entry for sample hooks,
2026-02-13). Thanks!
Patrick
---
.editorconfig | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.editorconfig b/.editorconfig
index 6e4eaa8e95..82e121a417 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -4,7 +4,11 @@ insert_final_newline = true
# The settings for C (*.c and *.h) files are mirrored in .clang-format. Keep
# them in sync.
-[{*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,Makefile,templates/hooks/*.sample}]
+[{*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,Makefile}]
+indent_style = tab
+tab_width = 8
+
+[templates/hooks/*.sample]
indent_style = tab
tab_width = 8
---
base-commit: 7f19e4e1b6a3ad259e2ed66033e01e03b8b74c5e
change-id: 20260311-b4-pks-editorconfig-fix-subdirs-981e6db389ec
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] editorconfig: fix style not applying to subdirs anymore
2026-03-11 7:09 [PATCH] editorconfig: fix style not applying to subdirs anymore Patrick Steinhardt
@ 2026-03-11 14:16 ` Phillip Wood
2026-03-11 17:32 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Phillip Wood @ 2026-03-11 14:16 UTC (permalink / raw)
To: Patrick Steinhardt, git; +Cc: Phillip Wood
On 11/03/2026 07:09, Patrick Steinhardt wrote:
> In 046e1117d5 (templates: add .gitattributes entry for sample hooks,
> 2026-02-13) we have added another pattern to our EditorConfig that sets
> the style for our hook templates. As our templates are located in
> "templates/hooks/", we explicitly specify that subdirectory as part of
> the globbing pattern.
>
> This change causes files in other subdirectories, like for example
> "builtin/add.c", to not be configured properly anymore. This seems to
> stem from a subtlety in the EditorConfig specification [1]:
>
> If the glob contains a path separator (a / not inside square
> brackets), then the glob is relative to the directory level of the
> particular .editorconfig file itself. Otherwise the pattern may also
> match at any level below the .editorconfig level.
>
> What's interesting is that the _whole_ expression is considered to be
> the glob.
Ouch, I'd missed that, thanks for fixing it
> So when the expression used is for example "{*.c,foo/*.h}",
> then it will be considered a single glob, and because it contains a path
> separator we will now anchor "*.c" matches to the same directory as the
> ".editorconfig" file.
>
> Fix this issue by splitting out the configuration for hook templates
> into a separate section. It leads to a tiny bit of duplication, but the
> alternative would be something like the following (note the "{,**/}"):
>
> [{{,**/}*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,{,**/}Makefile,templates/hooks/*.sample}]
> indent_style = tab
> tab_width = 8
>
> This starts to become somewhat hard to read, so the duplication feels
> like the better tradeoff.
Agreed
Thanks
Phillip
> [1]: https://spec.editorconfig.org/#glob-expressions
>
> Signed-off-by: Patrick Steinhardt <ps@pks.im>
> ---
> Hi,
>
> this fixes a small regression in our EditorConfig introduced in
> 046e1117d5 (templates: add .gitattributes entry for sample hooks,
> 2026-02-13). Thanks!
>
> Patrick
> ---
> .editorconfig | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/.editorconfig b/.editorconfig
> index 6e4eaa8e95..82e121a417 100644
> --- a/.editorconfig
> +++ b/.editorconfig
> @@ -4,7 +4,11 @@ insert_final_newline = true
>
> # The settings for C (*.c and *.h) files are mirrored in .clang-format. Keep
> # them in sync.
> -[{*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,Makefile,templates/hooks/*.sample}]
> +[{*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,Makefile}]
> +indent_style = tab
> +tab_width = 8
> +
> +[templates/hooks/*.sample]
> indent_style = tab
> tab_width = 8
>
>
> ---
> base-commit: 7f19e4e1b6a3ad259e2ed66033e01e03b8b74c5e
> change-id: 20260311-b4-pks-editorconfig-fix-subdirs-981e6db389ec
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] editorconfig: fix style not applying to subdirs anymore
2026-03-11 14:16 ` Phillip Wood
@ 2026-03-11 17:32 ` Junio C Hamano
0 siblings, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2026-03-11 17:32 UTC (permalink / raw)
To: Phillip Wood; +Cc: Patrick Steinhardt, git, Phillip Wood
Phillip Wood <phillip.wood123@gmail.com> writes:
> On 11/03/2026 07:09, Patrick Steinhardt wrote:
>...
>> If the glob contains a path separator (a / not inside square
>> brackets), then the glob is relative to the directory level of the
>> particular .editorconfig file itself. Otherwise the pattern may also
>> match at any level below the .editorconfig level.
>>
>> What's interesting is that the _whole_ expression is considered to be
>> the glob.
>
> Ouch, I'd missed that, thanks for fixing it
> ...
>> [{{,**/}*.{c,h,sh,bash,perl,pl,pm,txt,adoc},config.mak.*,{,**/}Makefile,templates/hooks/*.sample}]
>> indent_style = tab
>> tab_width = 8
>>
>> This starts to become somewhat hard to read, so the duplication feels
>> like the better tradeoff.
>
> Agreed
Thanks, both.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-11 17:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 7:09 [PATCH] editorconfig: fix style not applying to subdirs anymore Patrick Steinhardt
2026-03-11 14:16 ` Phillip Wood
2026-03-11 17:32 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox