summaryrefslogtreecommitdiff
path: root/packages/telemetry/src/project-info.ts
diff options
context:
space:
mode:
authorGravatar Josh Goldberg ✨ <git@joshuakgoldberg.com> 2023-07-03 05:59:43 -0700
committerGravatar GitHub <noreply@github.com> 2023-07-03 20:59:43 +0800
commit2fea174303ca60f4765c6294d99ebc7a19e73403 (patch)
tree671f1f27d6d0827e51aaa20704b7f6154ad5d053 /packages/telemetry/src/project-info.ts
parentfc6826ff7620b0c5e419de93ef7c463a12fe3652 (diff)
downloadastro-2fea174303ca60f4765c6294d99ebc7a19e73403.tar.gz
astro-2fea174303ca60f4765c6294d99ebc7a19e73403.tar.zst
astro-2fea174303ca60f4765c6294d99ebc7a19e73403.zip
feat: use typescript-eslint@v6's reworked configs (#7425)
Diffstat (limited to 'packages/telemetry/src/project-info.ts')
-rw-r--r--packages/telemetry/src/project-info.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/telemetry/src/project-info.ts b/packages/telemetry/src/project-info.ts
index 5f95d1b4b..f5f755bc1 100644
--- a/packages/telemetry/src/project-info.ts
+++ b/packages/telemetry/src/project-info.ts
@@ -80,7 +80,7 @@ function getProjectIdFromGit(): string | null {
}
}
-function getProjectId(isCI: boolean): Pick<ProjectInfo, 'isGit' | 'anonymousProjectId'> {
+function getProjectId(isCI: boolean): Pick<ProjectInfo, 'anonymousProjectId' | 'isGit'> {
const projectIdFromGit = getProjectIdFromGit();
if (projectIdFromGit) {
return {