Skip to content

Commit 19c959c

Browse files
committed
Merge branch 'feat/dashboard-agent-ui' into feat/dashboard-agent-flows-watch
2 parents 2f27582 + 110a427 commit 19c959c

123 files changed

Lines changed: 1395 additions & 385 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/batch-trigger-debounce.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/chat-agent-preload-oom-recovery.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/chat-handover-cursor-off-by-one.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/chat-session-caught-up-resume.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/friendly-keys-batch-tokens.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/mcp-trigger-task-region.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/retry-run-start-on-connection-error.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/typescript-seven-builds.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/VOUCHED.td

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ ConProgramming
2626
saasjesus
2727
brentshulman-silkline
2828
Leafgard
29-
Rohan170603
29+
Rohan170603
30+
NERLOE

.oxlintrc.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"plugins": ["typescript", "import", "react"],
44
"jsPlugins": [
55
"./oxlint-plugins/no-thrown-unawaited-redirect.mjs",
6-
"./oxlint-plugins/runops-residency.mjs"
6+
"./oxlint-plugins/runops-residency.mjs",
7+
"./oxlint-plugins/prisma-in-filter.mjs"
78
],
89
"ignorePatterns": [
910
"**/dist/**",
@@ -30,13 +31,21 @@
3031
"no-empty-pattern": "off",
3132
"no-control-regex": "off",
3233
"typescript/no-non-null-asserted-optional-chain": "off",
33-
"no-unused-expressions": ["warn", { "allowShortCircuit": true, "allowTernary": true }],
34+
"no-unused-expressions": [
35+
"warn",
36+
{
37+
"allowShortCircuit": true,
38+
"allowTernary": true
39+
}
40+
],
3441
"typescript/consistent-type-imports": "error",
3542
"import/no-duplicates": "error",
3643
"import/namespace": "off",
3744
"react-hooks/exhaustive-deps": "off",
3845
"react-hooks/rules-of-hooks": "off",
39-
"trigger/no-thrown-unawaited-redirect": "error"
46+
"trigger/no-thrown-unawaited-redirect": "error",
47+
"trigger-prisma/no-unbounded-list-filter": "error",
48+
"trigger-prisma/no-unbounded-list-filter-in-args-helper": "error"
4049
},
4150
"overrides": [
4251
{
@@ -52,6 +61,13 @@
5261
"trigger-runops/no-control-plane-run-graph-access": "off",
5362
"trigger-runops/no-control-plane-in-runops-slot": "off"
5463
}
64+
},
65+
{
66+
"files": ["**/*.test.ts", "**/*.test.tsx", "**/test/**", "**/tests/**", "**/e2e/**"],
67+
"rules": {
68+
"trigger-prisma/no-unbounded-list-filter": "off",
69+
"trigger-prisma/no-unbounded-list-filter-in-args-helper": "off"
70+
}
5571
}
5672
]
5773
}

0 commit comments

Comments
 (0)