From a90581bc42975b99c16ee244004a111ce3c0e133 Mon Sep 17 00:00:00 2001 From: kamecha Date: Thu, 8 Aug 2024 00:17:40 +0900 Subject: [PATCH] deno fmt --- denops/@ddu-kinds/channel.ts | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/denops/@ddu-kinds/channel.ts b/denops/@ddu-kinds/channel.ts index 6e005b5..e531f85 100644 --- a/denops/@ddu-kinds/channel.ts +++ b/denops/@ddu-kinds/channel.ts @@ -90,16 +90,19 @@ export class Kind extends dduVim.BaseKind { message, args.previewContext.width, ); - assert(ret, is.ObjectOf({ - body: is.ArrayOf(is.String), - position: is.OptionalOf(is.ObjectOf({ - quote: is.ArrayOf(is.ObjectOf({ - index: is.Number, - start: is.Number, - end: is.Number, - })) - })) - })); + assert( + ret, + is.ObjectOf({ + body: is.ArrayOf(is.String), + position: is.OptionalOf(is.ObjectOf({ + quote: is.ArrayOf(is.ObjectOf({ + index: is.Number, + start: is.Number, + end: is.Number, + })), + })), + }), + ); return ret.body; }), );