Skip to content

Commit c11bb25

Browse files
committed
cr
1 parent b46b419 commit c11bb25

File tree

8 files changed

+8
-1
lines changed

8 files changed

+8
-1
lines changed

.codespellignore

Whitespace-only changes.

apps/agents/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"build": "yarn clean && tsc",
1717
"clean": "rm -rf ./dist .turbo || true",
1818
"format": "prettier --config .prettierrc --write \"src\" \"scripts\"",
19+
"format:check": "prettier --config .prettierrc --check \"src\" \"scripts\"",
1920
"lint": "eslint src",
2021
"lint:fix": "eslint src --fix",
2122
"postinstall": "yarn turbo build"

apps/web/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"lint": "next lint",
1313
"lint:fix": "next lint --fix",
1414
"format": "prettier --config .prettierrc --write \"src\"",
15+
"format:check": "prettier --config .prettierrc --check \"src\"",
1516
"eval": "vitest run --config ls.vitest.config.ts",
1617
"eval:highlights": "yarn tsx evals/highlights.ts"
1718
},

apps/web/src/contexts/GraphContext.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,6 @@ export function GraphProvider({ children }: { children: ReactNode }) {
292292
currentThreadId = newThread.thread_id;
293293
}
294294

295-
296295
const messagesInput = {
297296
// `messages` contains the full, unfiltered list of messages
298297
messages: params.messages,

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "turbo build",
1010
"turbo:command": "turbo",
1111
"format": "turbo format",
12+
"format:check": "turbo format:check",
1213
"lint": "turbo lint",
1314
"lint:fix": "turbo lint:fix"
1415
},

packages/evals/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "yarn clean && tsc",
1010
"clean": "rm -rf ./dist .turbo || true",
1111
"format": "prettier --config .prettierrc --write \"src\"",
12+
"format:check": "prettier --config .prettierrc --check \"src\"",
1213
"lint": "eslint src",
1314
"lint:fix": "eslint src --fix"
1415
},

packages/shared/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"build": "yarn clean && tsc",
2929
"clean": "rm -rf ./dist .turbo || true",
3030
"format": "prettier --config .prettierrc --write \"src\"",
31+
"format:check": "prettier --config .prettierrc --check \"src\"",
3132
"lint": "eslint src",
3233
"lint:fix": "eslint src --fix"
3334
},

turbo.json

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
},
1515
"format": {
1616
"dependsOn": ["^format"]
17+
},
18+
"format:check": {
19+
"dependsOn": ["^format:check"]
1720
}
1821
}
1922
}

0 commit comments

Comments
 (0)