Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
366 Bytes
import { type Options, format } from "prettier"
export function pretty(value: any, options: Options = {}) {
return format(value, {
parser: "typescript",
bracketSpacing: true,
jsxSingleQuote: false,
printWidth: 160,
proseWrap: "always",
semi: false,
singleQuote: false,
tabWidth: 2,
trailingComma: "all",
...options,
})
}