prettier-config-xo
v2.0.0
Published
[![npm](https://img.shields.io/npm/v/prettier-config-xo)](https://www.npmjs.com/package/prettier-config-xo) [![Build Status](https://github.com/jonahsnider/prettier-config-xo/workflows/CI/badge.svg)](https://github.com/jonahsnider/prettier-config-xo/actio
Downloads
5,823
Maintainers
Readme
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');