chore(fleet): repin to the pack with current dispatch routing #2613
Annotations
13 errors and 10 warnings
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/build-sea.mts#L166
packages/cli/scripts/build-sea.mts:166:7: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(prefer-crlf-safe-split):
packages/cli/src/util/validation/check-input.mts#L38
packages/cli/src/util/validation/check-input.mts:38:35: `.split('\n')` strands a trailing `\r` on every line when the text carries CRLF endings — split with `/\r?\n/` instead. For a byte-exact split that must preserve `\r`, add `// oxlint-disable-next-line socket/prefer-crlf-safe-split`.
|
|
socket(no-logger-glyph-prefix):
scripts/repo/clean-cache.mts#L202
scripts/repo/clean-cache.mts:202:9: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L218
packages/cli/scripts/wasm.mts:218:3: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L203
packages/cli/scripts/wasm.mts:203:3: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L155
packages/cli/scripts/wasm.mts:155:5: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L154
packages/cli/scripts/wasm.mts:154:5: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L109
packages/cli/scripts/wasm.mts:109:3: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(no-logger-glyph-prefix):
packages/cli/scripts/wasm.mts#L108
packages/cli/scripts/wasm.mts:108:3: The message opens with `✓`, but the logger method owns the status glyph — `logger.success()` prints it for you. Drop the glyph and let the method carry the verdict. For a glyph that is genuinely data, add `// oxlint-disable-next-line socket/no-logger-glyph-prefix`.
|
|
socket(prefer-crlf-safe-split):
packages/cli/test/unit/commands/manifest/bazel/extract_bazel_to_pypi.constructed.test.mts#L99
packages/cli/test/unit/commands/manifest/bazel/extract_bazel_to_pypi.constructed.test.mts:99:18: `.split('\n')` strands a trailing `\r` on every line when the text carries CRLF endings — split with `/\r?\n/` instead. For a byte-exact split that must preserve `\r`, add `// oxlint-disable-next-line socket/prefer-crlf-safe-split`.
|
|
🧪 Test (ubuntu-latest)
Process completed with exit code 1.
|
|
packages/cli/test/integration/cli/cmd-manifest-cdxgen.test.mts > socket manifest cdxgen > should support --help: `manifest cdxgen --help --config {}`:
packages/cli/test/integration/cli/cmd-manifest-cdxgen.test.mts#L57
AssertionError: help should exit with code 0: expected 1 to be +0 // Object.is equality
- Expected
+ Received
- 0
+ 1
❯ packages/cli/test/integration/cli/cmd-manifest-cdxgen.test.mts:57:52
|
|
test/repo/unit/pin-readme.test.mts:
test/repo/unit/pin-readme.test.mts#L12
Error: Cannot find module '../../../scripts/fleet/publish-infra/pin-readme.mts' imported from /home/runner/work/socket-cli/socket-cli/test/repo/unit/pin-readme.test.mts
❯ test/repo/unit/pin-readme.test.mts:12:1
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
Serialized Error: { code: 'ERR_MODULE_NOT_FOUND' }
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L387
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:387:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L385
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:385:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L384
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:384:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L383
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:383:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L382
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:382:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts#L381
packages/cli/src/commands/manifest/bazel/extract_bazel_to_pypi.mts:381:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/bazel-workspace-walk.mts#L52
packages/cli/src/commands/manifest/bazel/bazel-workspace-walk.mts:52:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts#L12
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts:12:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts#L11
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts:11:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|
|
socket(no-required-in-options-bag):
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts#L10
packages/cli/src/commands/manifest/bazel/bazel-query-runner.mts:10:3: a required member in an options bag — an option the caller MUST pass is not an option; hoist it to a positional parameter (`fn(required, options?)`) or move the bag to a required `config`. Bypass: add a `oxlint-disable-next-line socket/no-required-in-options-bag` comment.
|