From: Nathan Moinvaziri Date: Thu, 4 Jan 2024 17:06:03 +0000 (-0800) Subject: Remove tab-in-indent rule from lint workflow X-Git-Tag: 2.1.6~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=838a5d586d3d8efc6847c87640880ef7743ad08d;p=thirdparty%2Fzlib-ng.git Remove tab-in-indent rule from lint workflow Makefiles require using tabs as indents. So we need to remove this rule. --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f279d4c1..afea46a1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,5 +13,5 @@ jobs: - name: Whitespace errors run: | - git config core.whitespace tab-in-indent,blank-at-eol + git config core.whitespace blank-at-eol git diff --color --check ${{ github.event.pull_request.base.sha }}