Skip to content

Commit 2937b7e

Browse files
committed
chore: drop a no-op biome suppression that blocks lint:check
shell-layout.test.ts carries a 'biome-ignore lint:' comment that suppresses nothing, which biome reports as suppressions/unused. It is identical on staging, so lint:check fails there too; removing it unblocks CI. Verified the suppression was masking no real violation and the test still passes.
1 parent be4908e commit 2937b7e

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

apps/sim/lib/workspace-files/shell-layout.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ function runShell(source: string) {
1717
.replace(/^<!DOCTYPE html>\n<html lang="en">/, '')
1818
.replace(/<\/html>$/, '')
1919
const script = SIM_ARTIFACT_SHELL.replace(/^<script>/, '').replace(/<\/script>$/, '')
20-
// biome-ignore lint: test harness executes the shell inline
2120
new Function(script)()
2221
}
2322

apps/sim/tools/langsmith/create_feedback.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const langsmithCreateFeedbackTool: ToolConfig<
3838
required: false,
3939
visibility: 'user-or-llm',
4040
description:
41-
"UUID of the tracing project (session) the feedback belongs to. Optional — in the LangSmith OpenAPI spec only `key` is required by POST /api/v1/feedback, and the official SDK sends feedback without a session_id. Supply it when you have it: some LangSmith deployments cannot locate the run without it. Never guess it — use the sessionId reported by a preceding langsmith_get_run for the same run, or look the project up with GET /api/v1/sessions.",
41+
'UUID of the tracing project (session) the feedback belongs to. Optional — in the LangSmith OpenAPI spec only `key` is required by POST /api/v1/feedback, and the official SDK sends feedback without a session_id. Supply it when you have it: some LangSmith deployments cannot locate the run without it. Never guess it — use the sessionId reported by a preceding langsmith_get_run for the same run, or look the project up with GET /api/v1/sessions.',
4242
},
4343
key: {
4444
type: 'string',

0 commit comments

Comments
 (0)