@architower/prettier-config
v2.0.0
Published
Architower's Prettier config
Downloads
10
Maintainers
Readme
prettier-config
Our prettier config with TailwindCSS support & import sorting
How to use it?
If you just want to apply config in your repository, add key in package.json
:
{
"name": "my-cool-library",
"version": "9000.0.1",
"prettier": "@company/prettier-config"
}
If you don’t want to use package.json
, you can use any of the supported
extensions to export a string, e.g. .prettierrc.json
:
"@company/prettier-config"
Development
At first make a local copy of this repository, then install all the dependencies
using pnpm
or package manager of your choice:
git clone [email protected]:ArchiTower/prettier-config.git
cd prettier-config
pnpm i
Then, create a branch, make your changes in code, commit it following gitmoji & conventional commits styles.
After that, push it and then create a
Pull Request with target
to develop
branch.
Branching
In our repositories we're following the simple solution:
main
branch represents stable releases of the libraries or production environment of released applicationsdevelop
branch is for release candidates, betas etc. Here we developing solution - library or app.