prettier-config-xo
v3.0.0
Published
[](https://www.npmjs.com/package/prettier-config-xo) [](https://github.com/jonahsnider/prettier-config-xo/actio
Downloads
12,714
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.mjs, or some other module
import xoConfig from 'prettier-config-xo';
export default {
...xoConfig,
semi: false,
};Spaces
You can use spaces instead of tabs with the space config:
// prettier.config.mjs
export {default} from 'prettier-config-xo/space';