Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@putstack/prettier-config
Advanced tools
This is a simple configuration for Prettier that I use across projects.
To install this package run the following command in the terminal in the root directory of your application.
pnpm install -D @putstack/prettier-config
OR
npm install --save-dev @putstack/prettier-config
OR
yarn add -D @putstack/prettier-config
Create a .prettierrc, .prettierrc.yaml, .prettierrc.yml or .prettierrc.json file and export a string.
OR
Create a prettier.config.js or .prettierrc.js file and export an object.
import putstackConfig from '@putstack/prettier-config';
/** @type {import("prettier").Config} */
const config = {
...putstackConfig,
};
export default config;
OR WITH CJS
module.exports = {
...require("@putstack/prettier-config"),
endOfLine: 'lf', //to overwriter any configuration
}
This project use the prettier-config on itself, as seen in the root package.json file.
FAQs
Prettier config by Putro
We found that @putstack/prettier-config 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.