Skip to content

Instantly share code, notes, and snippets.

@stackdumper
Last active April 10, 2019 19:32
Show Gist options
  • Save stackdumper/3aee02704c04fc261ffbae7df7f57a61 to your computer and use it in GitHub Desktop.
Save stackdumper/3aee02704c04fc261ffbae7df7f57a61 to your computer and use it in GitHub Desktop.
Prettier typescript config
{
"semi": false,
"tabWidth": 2,
"printWidth": 90,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"parser": "typescript",
"endOfLine": "lf"
}
@stackdumper
Copy link
Author

prettier --write './!(node_modules|build)/**/*.{ts,tsx,js,jsx}'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment