This is a small CLI tool that dumps all of Prettier’s default configuration options to a file in the format of your choice.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dylan Baker 3d7ec2dceb 0.2.3 преди 4 години
.gitignore Initial commit преди 4 години
.prettierrc Restore prettierrc преди 4 години
LICENSE Initial commit преди 4 години
README.md Fix readme typos преди 4 години
index.js Don't do ad-hoc serialization, update exclusions преди 4 години
package-lock.json 0.2.3 преди 4 години
package.json 0.2.3 преди 4 години
test.js Don't do ad-hoc serialization, update exclusions преди 4 години

README.md

prettier-default-config

This is a small CLI tool that dumps all of Prettier’s default configuration options to a file in the format of your choice.

Installation

npm install -g prettier-default-config

Usage

USAGE
    prettier-default-config [OPTIONS]

OPTIONS:
    --format <FORMAT> The config file format to generate.
                      <json|yaml|toml|js|package.json>
                      default: json

    --stdout          Write config to STDOUT rather than to a file

    --help            Prints help information

Exclusions

The config file formats that Prettier uses are not able to represent all of Prettier’s default values. For instance, JSON can’t represent Infinity, and no format except actual JavaScript can represent undefined. As a result, depending on the chosen format, some configuration options may be excluded. The current list of exclusions is as follows:

Format Excluded Options
JSON rangeEnd , filepath, parser
TOML rangeEnd
YAML filepath

License

MIT