From 1fbda84306e914afdba2f504341ee6accf378e9d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 15 Aug 2021 17:08:31 +0200 Subject: [PATCH] Exclude Info.plist files from whitespace checks These files use TABs for indentation, so the standard check doesn't work for them (and it doesn't seem worth having a special check just for them neither, so simply don't check them at all). --- .github/workflows/code_checks.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index e70a6a0ff1..63f42bd67b 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -49,6 +49,7 @@ jobs: ':!install-sh' \ ':!**/*akefile*' \ ':!**/*.pbxproj' \ + ':!**/Info*.plist*' \ ':!**/*.sln' \ ':!**/*.vcproj' \ ':!**/*.xpm'