From c938ee0b3268dedc80379b67769f9735e8235b6c Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Thu, 9 Dec 2021 20:59:18 +0100 Subject: [PATCH] format file with prettier --- src/basic-languages/protobuf/protobuf.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/basic-languages/protobuf/protobuf.ts b/src/basic-languages/protobuf/protobuf.ts index a91f13a0..09a48c6e 100644 --- a/src/basic-languages/protobuf/protobuf.ts +++ b/src/basic-languages/protobuf/protobuf.ts @@ -133,9 +133,10 @@ export const language = { /(")(proto2)(")/, ['string.quote', 'string', { token: 'string.quote', switchTo: '@topLevel.proto2' }] ], - [ // If no `syntax` provided, regarded as proto2 - /.*?/, - { token: '', switchTo: '@topLevel.proto2' } + [ + // If no `syntax` provided, regarded as proto2 + /.*?/, + { token: '', switchTo: '@topLevel.proto2' } ] ],