From 3fedab929283968d65510494772aaf513dc78c1e Mon Sep 17 00:00:00 2001 From: SyfiMeal <92473805+SyfiMeal@users.noreply.github.com> Date: Sat, 23 Oct 2021 14:13:30 +0200 Subject: [PATCH] Revert "Fix base URI for rule documentation (#3608)" This reverts commit 8f40aa17a92935c70baf8cf517f2987fb051284c. --- src/features/CodeActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/CodeActions.ts b/src/features/CodeActions.ts index 73c8974312..7fcf0a639f 100644 --- a/src/features/CodeActions.ts +++ b/src/features/CodeActions.ts @@ -34,7 +34,7 @@ export class CodeActionsFeature implements vscode.Disposable { } public showRuleDocumentation(ruleId: string) { - const pssaDocBaseURL = "https://github.com/PowerShell/PSScriptAnalyzer/blob/master/docs/Rules"; + const pssaDocBaseURL = "https://github.com/PowerShell/PSScriptAnalyzer/blob/master/RuleDocumentation"; if (!ruleId) { this.log.writeWarning("Cannot show documentation for code action, no ruleName was supplied.");