Skip to content

Instantly share code, notes, and snippets.

@arrudacaio
Created December 5, 2021 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arrudacaio/c1525c9e6a925a62848b0cecb7784f3f to your computer and use it in GitHub Desktop.
Save arrudacaio/c1525c9e6a925a62848b0cecb7784f3f to your computer and use it in GitHub Desktop.
Adds prettier in project

Prettier list

  • yarn add prettier
  • Creates a file called .prettierrc with config below.
{
  "trailingComma: "es5",
  "tabWidth": 2,
  "semi": true,
  "singleQuote": true
} 
  • Creates script in package.json
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'";
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment