2019-03-13 17:10:26 +08:00
|
|
|
#!/bin/bash
|
2020-09-08 00:39:47 +08:00
|
|
|
set -e
|
2019-03-13 17:10:26 +08:00
|
|
|
|
2021-02-15 18:15:34 +08:00
|
|
|
ERROR_COUNT="$(yarn run tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
|
2020-09-07 19:17:03 +08: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 17:10:26 +08:00
|
|
|
|
2021-02-15 18:15:34 +08: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 22:32:58 +08:00
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
|
|
|
echo -e "Directives: $DIRECTIVES"
|
|
|
|
echo -e "Controllers: $CONTROLLERS"
|
2020-03-18 15:22:46 +08:00
|
|
|
echo -e "Stories: $STORIES_COUNT"
|
|
|
|
echo -e "Documented stories: $MDX_COUNT"
|
2020-04-02 22:18:06 +08:00
|
|
|
echo -e "Legacy forms: $LEGACY_FORMS"
|
2021-02-15 18:15:34 +08:00
|
|
|
echo -e "TS Explicit any: $STRICT_LINT_EXPLICIT_ANY"
|
2019-03-13 17:10:26 +08:00
|
|
|
|
2020-09-07 19:17:03 +08: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 18:15:34 +08:00
|
|
|
\"grafana.ci-code.legacyForms\": \"${LEGACY_FORMS}\",
|
|
|
|
\"grafana.ci-code.strictLint.noExplicitAny\": \"${STRICT_LINT_EXPLICIT_ANY}\"
|
2020-09-07 19:17:03 +08:00
|
|
|
}"
|