Skip to content

Instantly share code, notes, and snippets.

@liamross
Last active May 29, 2019 16:01
Show Gist options
  • Save liamross/0da647310522c2463d593f6b8bd6cf42 to your computer and use it in GitHub Desktop.
Save liamross/0da647310522c2463d593f6b8bd6cf42 to your computer and use it in GitHub Desktop.
Basic prettier configs
# Ignore any files you wish to preserve format in (scss files?).
# somefile.scss
# Ignore build folders
dist
lib
storybook-build
# Ignore node modules folder
node_modules
bracketSpacing: false
proseWrap: always
singleQuote: true
trailingComma: all
overrides:
- files: '*.ts'
options:
printWidth: 120
- files: '*.tsx'
options:
printWidth: 120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment