Revert "Upgrade linter and formatter to Ultracite" (#1226)

This commit is contained in:
josh 2025-09-21 12:03:29 +01:00 committed by GitHub
parent 0e320b391d
commit 1aff7d9868
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
177 changed files with 8334 additions and 6943 deletions

View file

@ -1,13 +1,13 @@
import { generateUUID } from "@/lib/utils";
import { generateUUID } from '@/lib/utils';
export const TEST_PROMPTS = {
SKY: {
MESSAGE: {
id: generateUUID(),
createdAt: new Date().toISOString(),
role: "user",
content: "Why is the sky blue?",
parts: [{ type: "text", text: "Why is the sky blue?" }],
role: 'user',
content: 'Why is the sky blue?',
parts: [{ type: 'text', text: 'Why is the sky blue?' }],
},
OUTPUT_STREAM: [
'data: {"type":"start-step"}',
@ -19,16 +19,16 @@ export const TEST_PROMPTS = {
'data: {"type":"text-end","id":"STATIC_ID"}',
'data: {"type":"finish-step"}',
'data: {"type":"finish"}',
"data: [DONE]",
'data: [DONE]',
],
},
GRASS: {
MESSAGE: {
id: generateUUID(),
createdAt: new Date().toISOString(),
role: "user",
content: "Why is grass green?",
parts: [{ type: "text", text: "Why is grass green?" }],
role: 'user',
content: 'Why is grass green?',
parts: [{ type: 'text', text: 'Why is grass green?' }],
},
OUTPUT_STREAM: [
'data: {"type":"start-step"}',
@ -40,7 +40,7 @@ export const TEST_PROMPTS = {
'data: {"type":"text-end","id":"STATIC_ID"}',
'data: {"type":"finish-step"}',
'data: {"type":"finish"}',
"data: [DONE]",
'data: [DONE]',
],
},
};