diff --git a/extension/package.json b/extension/package.json index a5af391..1bbbe10 100644 --- a/extension/package.json +++ b/extension/package.json @@ -3,7 +3,7 @@ "displayName": "pylyzer", "description": "A fast Python static code analyzer & language server for VSCode", "publisher": "pylyzer", - "version": "0.1.5", + "version": "0.1.6", "engines": { "vscode": "^1.70.0" }, diff --git a/extension/src/extension.ts b/extension/src/extension.ts index e19ffdd..a5dc391 100644 --- a/extension/src/extension.ts +++ b/extension/src/extension.ts @@ -24,9 +24,7 @@ async function startLanguageClient(context: ExtensionContext) { /* optional features */ const checkOnType = workspace.getConfiguration("pylyzer").get("checkOnType", false); const args = ["--server"]; - if (!(enableDiagnostics && enableSemanticTokens && enableHover && smartCompletion) || (checkOnType || enableInlayHints)) { - args.push("--"); - } + args.push("--"); if (!enableDiagnostics) { args.push("--disable"); args.push("diagnostic");