1.0.0 • Published 3 years ago

@schleichermann/prettier-config v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@tim-lynn-clark/prettier-config

My personal Prettier config

Usage

Install:

$ npm install @schleichermann/prettier-config --save-dev
$ yarn add --dev @schleichermann/prettier-config

Config Setup:

Two options for setup in your project.

Option 1: Edit package.json

{
  // ...
  "prettier": "@schleichermann/prettier-config"
}

Option 2: Edit .prettierrc.js

module.exports = {
  ...require("@schleichermann/prettier-config"),
  semi: false,
};