2019-03-13 04:10:26 -05:00
|
|
|
#!/bin/bash
|
2020-09-07 11:39:47 -05:00
|
|
|
set -e
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2021-02-15 04:15:34 -06:00
|
|
|
ERROR_COUNT="$(yarn run tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
|
2020-09-07 06:17:03 -05:00
|
|
|
DIRECTIVES="$(grep -r -o directive public/app/ | wc -l)"
|
|
|
|
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/ | wc -l)"
|
|
|
|
STORIES_COUNT="$(find ./packages/grafana-ui/src/components -name "*.story.tsx" | wc -l)"
|
|
|
|
MDX_COUNT="$(find ./packages/grafana-ui/src/components -name "*.mdx" | wc -l)"
|
|
|
|
LEGACY_FORMS="$(grep -r -oP 'LegacyForms;' public/app | wc -l)"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2021-02-15 04:15:34 -06:00
|
|
|
STRICT_LINT_RESULTS="$(yarn run eslint --rule '@typescript-eslint/no-explicit-any: ["error"]' --format unix ./public/ || true)"
|
|
|
|
STRICT_LINT_EXPLICIT_ANY="$(echo "${STRICT_LINT_RESULTS}" | grep -o "no-explicit-any" | wc -l)"
|
|
|
|
|
2019-03-29 09:32:58 -05:00
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
|
|
|
echo -e "Directives: $DIRECTIVES"
|
|
|
|
echo -e "Controllers: $CONTROLLERS"
|
2020-03-18 02:22:46 -05:00
|
|
|
echo -e "Stories: $STORIES_COUNT"
|
|
|
|
echo -e "Documented stories: $MDX_COUNT"
|
2020-04-02 09:18:06 -05:00
|
|
|
echo -e "Legacy forms: $LEGACY_FORMS"
|
2021-02-15 04:15:34 -06:00
|
|
|
echo -e "TS Explicit any: $STRICT_LINT_EXPLICIT_ANY"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2020-09-07 06:17:03 -05:00
|
|
|
echo "Metrics: {
|
|
|
|
\"grafana.ci-code.strictErrors\": \"${ERROR_COUNT}\",
|
|
|
|
\"grafana.ci-code.directives\": \"${DIRECTIVES}\",
|
|
|
|
\"grafana.ci-code.controllers\": \"${CONTROLLERS}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.stories\": \"${STORIES_COUNT}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.mdx\": \"${MDX_COUNT}\",
|
2021-02-15 04:15:34 -06:00
|
|
|
\"grafana.ci-code.legacyForms\": \"${LEGACY_FORMS}\",
|
|
|
|
\"grafana.ci-code.strictLint.noExplicitAny\": \"${STRICT_LINT_EXPLICIT_ANY}\"
|
2020-09-07 06:17:03 -05:00
|
|
|
}"
|