1.19.1 • Published 4 years ago

@chancedigital/wp-prettier v1.19.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Prettier Banner

WordPress Prettier

This is a fork (of a fork) of Prettier that adds a new command line option --paren-spacing which inserts many extra spaces inside parentheses, the way how projects in the WordPress ecosystem (Calypso, Gutenberg, etc.) like to format their code. In order to install a version based on a particular upstream version (like 1.x.x), run

npm i --save-dev "git+https://github.com/chancedigital/wp-prettier.git#wp-prettier-1.x.x"

To figure out what the latest supported version of the fork is, look at the default branch of this repository. The original readme continues unchanged below:

Intro

Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

Input

foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());

Output

foo(
  reallyLongArg(),
  omgSoManyParameters(),
  IShouldRefactorThis(),
  isThereSeriouslyAnotherOne()
);

Prettier can be run in your editor on-save, in a pre-commit hook, or in CI environments to ensure your codebase has a consistent style without devs ever having to post a nit-picky comment on a code review ever again!


Documentation

Install · Options · CLI · API

Playground


Badge

Show the world you're using Prettiercode style: prettier

[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Contributing

See CONTRIBUTING.md.