Skip to content

Commit 37568f0

Browse files
committed
fix(manifest/bazel): order parent import after siblings
Satisfies the import-x/order lint rule by moving the ../../../utils/errors.mts import after the local ./bazel-* siblings.
1 parent dcbca02 commit 37568f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/manifest/bazel/extract_bazel_to_maven.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import path from 'node:path'
99

1010
import { logger } from '@socketsecurity/registry/lib/logger'
1111

12-
import { getErrorCause } from '../../../utils/errors.mts'
1312
import { resolveBazelBinary } from './bazel-bin-detect.mts'
1413
import {
1514
parseBazelBuildOutput,
@@ -30,6 +29,7 @@ import {
3029
detectWorkspaceMode,
3130
getBazelInvocationFlags,
3231
} from './bazel-workspace-detect.mts'
32+
import { getErrorCause } from '../../../utils/errors.mts'
3333

3434
import type { ExtractedArtifact } from './bazel-build-parser.mts'
3535
import type { BazelQueryOptions } from './bazel-query-runner.mts'

0 commit comments

Comments
 (0)