We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
format:write
Current format:write script command code violates DRY principles 😿
An example of duplicated prettier command code from package.json:
prettier
package.json
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"", "format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\""
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"", "format:write": "npm run format -- --write"
--cache
"format": "prettier --cache \"**/*.{css,js,json,jsx,ts,tsx}\"", "format:write": "npm run format -- --write"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current
format:write
script command code violates DRY principles 😿An example of duplicated
prettier
command code frompackage.json
:Improved script 👉🏻 #76
Common example
Prettier with
--cache
The text was updated successfully, but these errors were encountered: