From 5e31196f0e0768a3e26e9fee0aaea75e65ba1a40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maria=20Jos=C3=A9=20Solano?= Date: Sun, 5 Oct 2025 13:04:18 -0700 Subject: [PATCH] Add `source` field to code actions --- _specifications/lsp/3.18/language/codeAction.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_specifications/lsp/3.18/language/codeAction.md b/_specifications/lsp/3.18/language/codeAction.md index eef2560a7..e7f6ccb8e 100644 --- a/_specifications/lsp/3.18/language/codeAction.md +++ b/_specifications/lsp/3.18/language/codeAction.md @@ -462,6 +462,12 @@ export interface CodeAction { */ title: string; + /** + * A human-readable string describing the source of this code action, e.g. + * 'typescript' or 'super lint'. + */ + source?: string; + /** * The kind of the code action. *