chore: run lint

This commit is contained in:
Eric Liu 2024-11-30 10:39:34 -08:00
commit 765ffc88eb
3 changed files with 23 additions and 20 deletions

View file

@ -5,11 +5,11 @@ import { format } from "prettier";
import plugin from "prettier/plugins/typescript";
const formatTypeScript = async (value) => {
return await format(value, {
parser: "typescript",
return await format(value, {
parser: "typescript",
plugins: [plugin],
printWidth: 40, // Force breaking onto new lines
bracketSameLine: false
bracketSameLine: false,
});
};