🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@homebound/prettier-config

Package Overview
Dependencies
Maintainers
22
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@homebound/prettier-config

Shared Prettier configuration for Homebound projects

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
72
-65.22%
Maintainers
22
Weekly downloads
 
Created
Source

@homebound/prettier-config

Shared Prettier configuration for Homebound projects.

Installation

yarn add -D @homebound/prettier-config prettier

Usage

Add to your package.json:

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

Extending the config

To override settings, create a .prettierrc.js file:

const homeboundConfig = require("@homebound/prettier-config");

module.exports = {
  ...homeboundConfig,
  // your overrides here
};

Configuration

This config includes:

  • trailingComma: "all"
  • printWidth: 120
  • prettier-plugin-organize-imports for automatic import sorting

CI Integration

Add a check step to your CI:

prettier --check .

Or format all files:

prettier --write .

FAQs

Package last updated on 15 Mar 2026

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