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,4 +1,4 @@
import { Ctx, Cmd } from '../ctx'
import { Ctx, Cmd } from '../ctx';
import { analyzerStatus } from './analyzer_status';
import { matchingBrace } from './matching_brace';
@ -11,7 +11,9 @@ import * as runnables from './runnables';
import * as syntaxTree from './syntaxTree';
function collectGarbage(ctx: Ctx): Cmd {
return async () => { ctx.client.sendRequest<null>('rust-analyzer/collectGarbage', null) }
return async () => {
ctx.client.sendRequest<null>('rust-analyzer/collectGarbage', null);
};
}
export {
@ -24,5 +26,5 @@ export {
syntaxTree,
onEnter,
inlayHints,
collectGarbage
collectGarbage,
};