@os-team/prettier-config
v1.4.1
Published
Prettier config.
Downloads
747
Maintainers
Readme
@os-team/prettier-config 
Prettier config.
Installation
Prerequisites
Install the exact version (-E) of prettier in devDependencies (-D) using the following command:
yarn add -DE prettierStep 1. Install the package
Install the exact version (-E) of the package in devDependencies (-D) using the following command:
yarn add -DE @os-team/prettier-configStep 2. Add the config
The way you add the prettier config to your project depends on whether you want to override some properties or not.
Option 1. Using the default config
Create the .prettierrc file with the following content
"@os-team/prettier-config"Option 2. Overriding some properties
Create the .prettierrc.js file with the following content
module.exports = {
...require('@os-team/prettier-config'),
semi: false,
};In this example, you are overriding the semi property.
