包详细信息

prettier-config-xo

jonahsnider4.9kApache-2.02.0.0
xo, prettier, prettier-config, xo-config

自述文件

prettier-config-xo

npm Build Status XO code style codecov

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');