Chore: Lowered implicit anys limit to 5617

Progress: #14714
This commit is contained in:
Hugo Häggmark
2019-05-06 07:08:24 +02:00
committed by GitHub
parent 073c84179f
commit 9a8a6d9dda

View File

@@ -2,9 +2,9 @@
echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=5623
DIRECTIVES_LIMIT=175
CONTROLLERS_LIMIT=140
ERROR_COUNT_LIMIT=5617
DIRECTIVES_LIMIT=172
CONTROLLERS_LIMIT=139
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny true | grep -oP 'Found \K(\d+)')"
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"