From 2706b1408ecb44b45a788c380e88732a51cd3ced Mon Sep 17 00:00:00 2001 From: Yohan Robert Date: Thu, 20 May 2021 19:35:22 +0200 Subject: [PATCH] fix(rubocop): add `forceExclusion` to extension configuration The `forceExclusion` option was added in b5cb94b88dc514a484d82e439ae6090cf4a8ca2f but not added to the extension configuration. Therefore, VSCode did not suggest this property when editing the configuration. --- packages/vscode-ruby-client/package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/vscode-ruby-client/package.json b/packages/vscode-ruby-client/package.json index 1a9ba1d27..db8216c9b 100644 --- a/packages/vscode-ruby-client/package.json +++ b/packages/vscode-ruby-client/package.json @@ -287,6 +287,11 @@ "type": "string", "description": "RuboCop command. Setting this will cause RuboCop to be executed this way and other settings will be ignored!" }, + "forceExclusion": { + "type": "boolean", + "default": false, + "description": "Add the `--force-exclusion` option to the RuboCop command to prevent running RuboCop on the excluded files from rubocop.yml." + }, "useBundler": { "type": "boolean", "default": false,