diff --git a/.oxlintrc.json b/.oxlintrc.json index 64fb8d5648..a07982bdb3 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -10,7 +10,8 @@ "no-console": "warn", "no-await-in-loop": "off", "unicorn/no-array-sort": "off", - "no-restricted-globals": "error" + "no-restricted-globals": "error", + "typescript/consistent-type-imports": "error" }, "ignorePatterns": [ ".output/**", diff --git a/app/composables/useRepoMeta.ts b/app/composables/useRepoMeta.ts index eb0d83197a..5a2bdefbd5 100644 --- a/app/composables/useRepoMeta.ts +++ b/app/composables/useRepoMeta.ts @@ -1,9 +1,5 @@ -import { - parseRepoUrl, - GITLAB_HOSTS, - type ProviderId, - type RepoRef, -} from '#shared/utils/git-providers' +import type { ProviderId, RepoRef } from '#shared/utils/git-providers' +import { parseRepoUrl, GITLAB_HOSTS } from '#shared/utils/git-providers' export type RepoMetaLinks = { repo: string