0.1.1 • Published 4 years ago

@lunit/prettier-config v0.1.1

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

Prettier config

Basic Usage

Install dependencies.

npm install prettier @lunit/prettier-config --save-dev

Add this config into package.json.

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

Or if you want to customize this config. make a '.prettierrc.js' file on the project root.

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