Socket
Socket
Sign inDemoInstall

@putstack/prettier-config

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@putstack/prettier-config

Prettier config by Putro


Version published
Maintainers
0
Created
Source

A Prettier configuration by Putro

This is a simple configuration for Prettier that I use across projects.

Installation

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

Usage

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
}

Example

This project use the prettier-config on itself, as seen in the root package.json file.

Keywords

FAQs

Package last updated on 02 Aug 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc