1.1.1 • Published 6 years ago

@msg-labs/prettier-config v1.1.1

Weekly downloads
4
License
WTFNMFPL-1.0
Repository
github
Last release
6 years ago

Prettier configuration

Installation

npm install --save-dev @msg-labs/prettier-config

Usage

You can use this prettier config by adding this to your package.json:

{
    "prettier": "@msg-labs/prettier-config"
}

If you want to override any rule of the configuration, create a .prettierrc.js file with the following content:

module.exports = {
    ...require('@msg-labs/prettier-config'),
    semi: false
};