2.0.0 • Published 4 years ago
prettier-config-xo v2.0.0
prettier-config-xo
Prettier config that follows the XO code style.
Usage
Default config
Add the prettier property to your package.json.
{
	"name": "my-cool-library",
	"version": "1.0.0",
	"prettier": "prettier-config-xo"
}Extending the configuration
// prettier.config.js, or some other file
module.exports = {
	...require('prettier-config-xo'),
	semi: false,
};Spaces
You can use spaces instead of tabs with the space config:
module.exports = require('prettier-config-xo/space');