@muravjev/configs-prettier

0.1.4 • Public • Published

Shared prettier configuration

The purpose of the prettier is formatting many language formats (js, ts, tsx, md, json, yaml).


Contents

Setup

  • Add workspace reference to @muravjev/configs-prettier and its peer dependencies:

    pnpm add -w @muravjev/configs-prettier prettier
  • Add prettier configuration file:

    // .prettierrc.js
    
    module.exports = require('@muravjev/configs-prettier');
  • Add prettier ignore patterns file:

    # .prettierignore
    
    node_modules/
    pnpm-lock.yaml
    
    # Next ignore patterns
    .next/
    .build/
    .coverage/
    
    # Custom ignore patterns
    ...
  • Add prettier scripts:

    // package.json
    
    "scripts": {
      ...
      "format": "prettier",
      "format:check": "pnpm format --check --debug-check",
      "format:fix": "pnpm format --write"
      ...
    }

Automation

Usage

  • Automatic format file with prettier on save.

  • Automatic format of staged files with prettier on commit.

  • Manual usage from command line:

    pnpm format:check .
    pnpm format:fix .

Donation

If you found this project helpful, consider
buying me a coffee, donate by paypal or just leave a star
Thanks for your support, it is much appreciated!

License

MIT © Sergey Muravjev


Back


Dependents (0)

Package Sidebar

Install

npm i @muravjev/configs-prettier

Weekly Downloads

2

Version

0.1.4

License

MIT

Unpacked Size

4.04 kB

Total Files

5

Last publish

Collaborators

  • muravjev