From 6c1789e549a9147c54470f3871de49fbc27ad06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 8 Dec 2020 15:56:55 +0100 Subject: [PATCH] Typescript: Raise strict error limit for enterprise (#29688) --- scripts/ci-check-strict.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-check-strict.sh b/scripts/ci-check-strict.sh index 56e48a8a207..5cead2b03ad 100755 --- a/scripts/ci-check-strict.sh +++ b/scripts/ci-check-strict.sh @@ -3,7 +3,7 @@ set -e echo -e "Collecting code stats (typescript errors & more)" -ERROR_COUNT_LIMIT=579 +ERROR_COUNT_LIMIT=592 ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')" if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then