1.1.1 • Published 2 years ago

@mohalla-tech/prettier-config-sharechat v1.1.1

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

prettier-config-sharechat

ShareChat's Prettier config.

Usage

Install:

$ yarn add --dev prettier-config-sharechat

Edit package.json:

{
  // ...
  "prettier": "@mohalla-tech/prettier-config-sharechat"
}

If you need to extend the configuration to overwrite some properties from the shared configuration import the file in a .prettierrc.js file and export the modifications, e.g:

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