@strv/prettier-config
Advanced tools
Weekly downloads
Readme
Documentation for the
@strv/prettier-config
module.
# Yarn:
yarn add --dev @strv/prettier-config
# npm:
npm install --save-dev @strv/prettier-config
And reference it in your .prettierrc.js file:
module.exports = require('@strv/prettier-config')
Or you can of course choose your preffered way of using configs:
{
// ...
"prettier": "@strv/prettier-config"
}
{
"extends": ["@strv/prettier-config"]
}
Note: If you are using prettier
< v1.17 check this note.
To extend the current options you will need to create a .prettierrc.js and add the following:
module.exports = {
...require('@strv/prettier-config'),
// Add custom options bellow:
useTabs: true,
}
Versions of prettier
prior to v1.17 did not feature the possibility to use a shared config via package.json. The way to do it is similar to when extending, except that you can just export the config directly:
// .prettierrc.js
module.exports = require('@strv/prettier-config')
FAQs
STRV's ESLint config for Prettier
The npm package @strv/prettier-config receives a total of 346 weekly downloads. As such, @strv/prettier-config popularity was classified as not popular.
We found that @strv/prettier-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.