From 884e56f0e53fa181d69f819af67a79d4f24f5b6c Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 22 Jan 2025 21:01:14 +0800 Subject: [PATCH] duplicated configuration key due to improper merge --- package.json | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index b36fa00eba..6fda5089f6 100644 --- a/package.json +++ b/package.json @@ -46,16 +46,6 @@ "activationEvents": [], "main": "./dist/extension.js", "contributes": { - "configuration": { - "title": "Cline", - "properties": { - "cline.mcp.enabled": { - "type": "boolean", - "default": true, - "description": "Include MCP server functionality in AI prompts. When disabled, the AI will not be aware of MCP capabilities. This saves context window tokens." - } - } - }, "viewsContainers": { "activitybar": [ { @@ -151,6 +141,11 @@ } }, "description": "Settings for VSCode Language Model API" + }, + "cline.mcp.enabled": { + "type": "boolean", + "default": true, + "description": "Include MCP server functionality in AI prompts. When disabled, the AI will not be aware of MCP capabilities. This saves context window tokens." } } }