diff --git a/.eslintrc.json b/.eslintrc.json index 6df6b4c..6b14c38 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,7 +23,7 @@ } }, "rules": { - "prettier/prettier": "warn", + "prettier/prettier": "error", // Require all external imports to be declared as a dependency "import/no-extraneous-dependencies": [ "error", diff --git a/src/schemas/0.1.ts b/src/schemas/0.1.ts index 3ff5453..4d77ccc 100644 --- a/src/schemas/0.1.ts +++ b/src/schemas/0.1.ts @@ -98,7 +98,7 @@ export const McpbManifestSchema = z screenshots: z.array(z.string()).optional(), server: McpbManifestServerSchema, tools: z.array(McpbManifestToolSchema).optional(), - tools_generated: z.boolean().optional(), + tools_generated: z.boolean().optional(), prompts: z.array(McpbManifestPromptSchema).optional(), prompts_generated: z.boolean().optional(), keywords: z.array(z.string()).optional(), diff --git a/test/schemas.test.ts b/test/schemas.test.ts index 325af17..d05551a 100644 --- a/test/schemas.test.ts +++ b/test/schemas.test.ts @@ -335,5 +335,4 @@ describe("McpbManifestSchema", () => { expect(result.success).toBe(true); }); }); - });