We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66935c6 commit f0d3a02Copy full SHA for f0d3a02
2 files changed
.oxlintrc.json
@@ -10,7 +10,8 @@
10
"no-console": "warn",
11
"no-await-in-loop": "off",
12
"unicorn/no-array-sort": "off",
13
- "no-restricted-globals": "error"
+ "no-restricted-globals": "error",
14
+ "typescript/consistent-type-imports": "error"
15
},
16
"ignorePatterns": [
17
".output/**",
app/composables/useRepoMeta.ts
@@ -1,9 +1,5 @@
1
-import {
2
- parseRepoUrl,
3
- GITLAB_HOSTS,
4
- type ProviderId,
5
- type RepoRef,
6
-} from '#shared/utils/git-providers'
+import type { ProviderId, RepoRef } from '#shared/utils/git-providers'
+import { parseRepoUrl, GITLAB_HOSTS } from '#shared/utils/git-providers'
7
8
export type RepoMetaLinks = {
9
repo: string
0 commit comments