framework/js-packages/prettier-config
2021-07-18 21:31:11 +01:00
..
package.json Add documentation 2021-07-18 21:31:11 +01:00
prettierrc.json Initial commit 2021-07-18 21:26:28 +01:00
README.md Add documentation 2021-07-18 21:31:11 +01:00

Flarum Prettier Config

Flarum's official configuration for the Prettier code formatter.

For more info about shared Prettier configurations, check out the Prettier documentation.

Usage

Add the prettier key to your package.json:

// package.json
{
  "name": "my-cool-package",
  "version": "1.0.0",
  "prettier": "@flarum/prettier-config"
  // ...
}

Extending

You can extend our config with your own custom options, too. Import our config, then spread its require in a .prettierrc.js file:

// .prettierrc.js
module.exports = {
  ...require("@flarum/prettier-config"),
  semi: false,
};