Run prettier on all files

This commit is contained in:
Aleksey Kladov 2019-12-30 18:31:08 +01:00
parent 9bfeac708d
commit ac3d0e8340
7 changed files with 18 additions and 23 deletions

View file

@ -1,8 +1,5 @@
import * as lc from 'vscode-languageclient';
import {
applySourceChange,
SourceChange,
} from '../source_change';
import { applySourceChange, SourceChange } from '../source_change';
import { Cmd, Ctx } from '../ctx';
export function onEnter(ctx: Ctx): Cmd {
@ -24,5 +21,5 @@ export function onEnter(ctx: Ctx): Cmd {
await applySourceChange(ctx, change);
return true;
}
};
}