🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@deepracticex/prettier-config

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deepracticex/prettier-config

Shared Prettier configuration for Deepractice projects

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
2
Created
Source

@deepracticex/prettier-config

Shared Prettier configuration for Deepractice projects.

Installation

pnpm add -D @deepracticex/prettier-config prettier

Usage

{
  "prettier": "@deepracticex/prettier-config"
}

Via prettier.config.js

import config from "@deepracticex/prettier-config";

export default config;

Extend and Override

import baseConfig from "@deepracticex/prettier-config";

export default {
  ...baseConfig,
  printWidth: 100, // Override
};

Scripts

Add to your package.json:

{
  "scripts": {
    "format": "prettier --write .",
    "format:check": "prettier --check ."
  }
}

Features

  • ✅ Semicolons enabled
  • ✅ Double quotes
  • ✅ 2-space indentation
  • ✅ ES5 trailing commas
  • ✅ 80 character line width
  • ✅ LF line endings

Keywords

prettier

FAQs

Package last updated on 09 Oct 2025

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