From eafb0b53681643ab6e8eefa740db704ae5943c6c Mon Sep 17 00:00:00 2001 From: dawe Date: Tue, 2 Jan 2024 18:48:36 +0100 Subject: [PATCH 1/2] add excludeAnalyzers to package.json --- release/package.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/release/package.json b/release/package.json index 67ef4fc2..d8723ea6 100644 --- a/release/package.json +++ b/release/package.json @@ -446,6 +446,12 @@ "scope": "machine-overridable", "type": "array" }, + "FSharp.excludeAnalyzers": { + "default": [], + "description": "The names of custom analyzers that should not be executed.", + "scope": "machine-overridable", + "type": "array" + }, "FSharp.autoRevealInExplorer": { "default": "sameAsFileExplorer", "description": "Controls whether the solution explorer should automatically reveal and select files when opening them. If \u0060sameAsFileExplorer\u0060 is set, then the value of the \u0060explorer.autoReveal\u0060 setting will be used instead.", From 2ea726a60f8f06d3b421375297d2a3951f901c50 Mon Sep 17 00:00:00 2001 From: dawe Date: Wed, 3 Jan 2024 16:05:56 +0100 Subject: [PATCH 2/2] add FSharp.includeAnalyzers to package.json --- release/package.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/release/package.json b/release/package.json index d8723ea6..25cdf636 100644 --- a/release/package.json +++ b/release/package.json @@ -452,6 +452,12 @@ "scope": "machine-overridable", "type": "array" }, + "FSharp.includeAnalyzers": { + "default": [], + "description": "The names of custom analyzers that should exclusively be executed, others should be ignored.", + "scope": "machine-overridable", + "type": "array" + }, "FSharp.autoRevealInExplorer": { "default": "sameAsFileExplorer", "description": "Controls whether the solution explorer should automatically reveal and select files when opening them. If \u0060sameAsFileExplorer\u0060 is set, then the value of the \u0060explorer.autoReveal\u0060 setting will be used instead.",