Rename source.autoFix to source.fixAll

Part of #62110

`autoFix` is a confusing term since we have a `auto fix` command now. Using `fix all` as this term is used by many linters for this type of operation
This commit is contained in:
Matt Bierner
2019-01-22 14:31:04 -08:00
parent 73dfd92e65
commit 508f43166b
5 changed files with 12 additions and 9 deletions

View File

@@ -1022,7 +1022,7 @@ export class CodeActionKind {
public static readonly RefactorRewrite = CodeActionKind.Refactor.append('rewrite');
public static readonly Source = CodeActionKind.Empty.append('source');
public static readonly SourceOrganizeImports = CodeActionKind.Source.append('organizeImports');
public static readonly SourceAutoFix = CodeActionKind.Source.append('autoFix');
public static readonly SourceFixAll = CodeActionKind.Source.append('fixAll');
constructor(
public readonly value: string