1.0.0 • Published 3 years ago

@pokayoke/prettier-config v1.0.0

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

Installation

Add this package to your project's devDependencies:

yarn add -D @pokayoke/prettier-config

Usage

Use this config in one of the following ways:

Reference this package in your package.json:

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

Or, use any of the supported extensions (e.g. .prettierrc.json) to export a string:

"@pokayoke/prettier-config"

Overriding or Extending Config

Import this package in a .prettierrc.js file and add your own config options:

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