Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.22 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.22 KB

@flywheel-jp/prettier-config

Shared Prettier config for FLYWHEEL.

npm version Publish

Installation

$ yarn add --dev @flywheel-jp/prettier-config

Usage

Once the @flywheel-jp/prettier-config package is installed, you can use it by specifying the package in the prettier section of your package.json.

{
    // ...
    "prettier": "@flywheel-jp/prettier-config"
}

Overwrite properties

If you need to overwrite some properties, import the file in a .prettierrc.js file and export the modifications, e.g:

module.export = {
    ...require("@flywheel-jp/prettier-config"),
    overrides: [
        {
            files: "legacy/**/*.js",
            options: {
                semi: true
            }
        }
    ]
}

In this case, you need to remove the prettier section from your package.json.

Release

Creating a new release automatically publishes a new version to npm. Everything automatically happens.

License

MIT © FLYWHEEL Inc.