mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
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:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user