1.0.1 • Published 2 years ago

@mobajl/prettier-config v1.0.1

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

@mobajl/prettier-config

Prettier configuration for Mobajl.

Usage

$ yarn add -D @mobajl/prettier-config

In package.json add:

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

Or if you don't want it in your package.json:

$ echo '"@mobajl/prettier-config"' > .prettierrc.json

Or if you need to extend it, add .prettierrc.js:

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