diff --git a/src/lib/format-code.ts b/src/lib/format-code.ts index f20b54f7..65e66cc1 100644 --- a/src/lib/format-code.ts +++ b/src/lib/format-code.ts @@ -82,9 +82,5 @@ const formatPhp = async (content: string): Promise => { } const formatJson = async (content: string): Promise => { - if (content === 'void') { - return '{}' - } - return await prettier(content, { parser: 'json' }) }