Skip to content

Instantly share code, notes, and snippets.

@vojty
Created November 26, 2021 07:04
Show Gist options
  • Save vojty/8572bd78721381b1338df34bb6997540 to your computer and use it in GitHub Desktop.
Save vojty/8572bd78721381b1338df34bb6997540 to your computer and use it in GitHub Desktop.
Prettier node usage
import prettierConfig from './.prettierrc'
const code = 'const foo = 1; const bar = 2;'
const out = prettier.format(code, {
...prettierConfig,
parser: 'typescript'
})
console.log(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment