diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-03-19 09:54:55 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-03-19 09:54:55 -0700 |
| commit | 2ca397fa7c4a9d4764749a785f71c9a379cd0e5a (patch) | |
| tree | 57b386a4eac4c73e92d71a4e63f8ab64624b679e | |
| parent | 432282f9cbfbc16dcb77c400050ba8bc8c34b771 (diff) | |
| parent | 8a1b789c2f926d855eea04d731d43f97c3e7c83a (diff) | |
| download | git-2ca397fa7c4a9d4764749a785f71c9a379cd0e5a.tar.xz | |
Merge branch 'ps/editorconfig-unanchor'
Editorconfig filename patterns were specified incorrectly, making
many source files inside subdirectories unaffected, which has been
corrected.
* ps/editorconfig-unanchor:
editorconfig: fix style not applying to subdirs anymore
| -rw-r--r-- | .editorconfig | 6 |
1 files changed, 5 insertions, 1 deletions
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 |
