Clarify label on source action (#153356)

Clairify label on source action

For https://github.com/microsoft/vscode-eslint/issues/1428
This commit is contained in:
Matt Bierner
2022-06-27 12:01:41 -07:00
committed by GitHub
parent 8721752a3c
commit 9051021473

View File

@@ -133,7 +133,7 @@ class SourceFixAll extends SourceAction {
static readonly kind = vscode.CodeActionKind.SourceFixAll.append('ts');
constructor() {
super(localize('autoFix.label', 'Fix All'), SourceFixAll.kind);
super(localize('autoFix.label', 'Fix all fixable JS/TS issues'), SourceFixAll.kind);
}
async build(client: ITypeScriptServiceClient, file: string, diagnostics: readonly vscode.Diagnostic[], token: vscode.CancellationToken): Promise<void> {