From 94fab92db0dcc5dc89821a32656042b2f704d258 Mon Sep 17 00:00:00 2001 From: Andy Locascio Date: Mon, 27 Oct 2025 17:08:15 -0700 Subject: [PATCH 1/2] chore(lint): upgrade ESLint prettier rule to error --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", From 5f05581035e377b6a590afd2918c39c316977e6f Mon Sep 17 00:00:00 2001 From: Andy Locascio Date: Mon, 27 Oct 2025 18:22:45 -0700 Subject: [PATCH 2/2] fix: lint errors --- src/schemas/0.1.ts | 2 +- test/schemas.test.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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); }); }); - });