Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
:lipstick: adds prettier to an existing project with all bells and whistles-including husky, lint-staged
:lipstick: adds prettier to an existing project with all bells and whistles-including husky and pretty-quick. Have you ever been bothered by all the steps you need to do in a legacy codebase to get prettier all set up? Well now you don't have to.
npm i be-pretty -g
Requires that you have npm/yarn and npx
globally available. be pretty defaults to running npm, but if there is yarn.lock
file it will use yarn
.
When you are in an old codebase which needs to be pretty now, and stay pretty forever and ever execute be-pretty
. An output looks like this:
be-pretty
✔ Installing prettier husky pretty-quick
✔ Copying custom .prettierrc
✔ Adding pretty-quick pre-commit to package.json
✔ Formatting whole repo
Now you should have everything ready to just commit&push.
You may skip formatting step with a flag --skipFormatting
by default, be-pretty creates this prettier config.
{
"arrowParens": "always", // good for typescript/flow when you want to type your function arguments
"singleQuote": true // IMHO better readability
}
if you want to customize this, just run be-pretty setDefault -p="/path/to/your/defaultPrettierRc"
. You can omit the path and if there is a prettierc file in the current working directory it will be used.
be-pretty will use this as default from now on.
if you just want to reformat everything, you can call be-pretty formatAll
be-pretty setDefault sets a .prettierrc file as your default, if ommited
will look for the .prettierrc file in CWD[aliases: d]
be-pretty formatAll formats everything excluding node_modules[aliases: f]
be-pretty run run the series of commands to make a codebase pretty
[default]
Yes, the list of supported file extensions is not hardcoded anywhere, it's taken from prettier.getSupportInfo()
so it will always format all the files prettier supports.
FAQs
:lipstick: adds prettier to an existing project with all bells and whistles-including husky, lint-staged
The npm package be-pretty receives a total of 0 weekly downloads. As such, be-pretty popularity was classified as not popular.
We found that be-pretty demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.