Prettier fixed for Allman brace style
 
 
 
 
 
 
Go to file
Simon Knox 737884341d Update ext install command to match readme (#5784)
The previous command opened a list of forks and projects with the same name, it wasn't clear which one to install
2019-01-22 00:27:31 +08:00
.azure-pipelines chore(azure): node v4 compatible yarn (#5766) 2019-01-18 21:40:35 +08:00
.github docs: add CHANGELOG.unreleased.md (#5775) 2019-01-21 08:33:07 +08:00
bin refactor(cli): separate files and make it pure as possible (#2730) 2017-09-03 19:21:06 +10:00
docs Update ext install command to match readme (#5784) 2019-01-22 00:27:31 +08:00
scripts chore(scripts): add update-stable-docs to release script (#5772) 2019-01-20 11:43:26 +08:00
src fix: do not format callbacks with arguments as React hooks (#5778) 2019-01-22 00:26:39 +08:00
tests fix: do not format callbacks with arguments as React hooks (#5778) 2019-01-22 00:26:39 +08:00
tests_config fix: get rid of CRLF (#5494) 2018-12-08 18:28:29 +08:00
tests_integration fix(api): do not report the same deprecation warning more than once (#5774) 2019-01-20 15:38:19 +08:00
website Fix typo (#5776) 2019-01-20 22:53:22 +08:00
.codecov.yml Improve coverage and remove some dead code (#2504) 2017-07-17 23:31:42 +10:00
.eslintignore Introduce Release script (#4631) 2018-06-05 16:37:52 -03:00
.eslintrc.yml lint fixes 2018-04-17 18:09:36 -03:00
.flowconfig Build the dist/ with rollup (#1794) 2017-05-28 21:49:41 -07:00
.gitattributes fix: get rid of CRLF (#5494) 2018-12-08 18:28:29 +08:00
.gitignore chore: update azure pipelines (#5611) 2018-12-18 08:16:32 +08:00
.ignore Remove .npmignore and update .ignore (#2560) 2017-07-31 08:47:00 +10:00
.pre-commit-hooks.yaml docs(blog): 1.15 release (#5296) 2018-11-07 09:09:04 +08:00
.prettierignore Implement getSupportInfo() and use it for inference (#3033) 2017-11-03 18:06:25 +11:00
.yarnrc chore(yarn): disable integrity migration 2018-10-27 21:01:26 +08:00
CHANGELOG.md Release 1.16.0 2019-01-20 15:59:39 +08:00
CHANGELOG.unreleased.md fix: do not format callbacks with arguments as React hooks (#5778) 2019-01-22 00:26:39 +08:00
CONTRIBUTING.md Rename "babylon" with "babel" (#5647) 2018-12-27 21:05:19 +08:00
LICENSE Update copyright line (#5455) 2019-01-03 07:21:32 -05:00
README.md chore: update azure pipelines (#5611) 2018-12-18 08:16:32 +08:00
azure-pipelines.yml chore: update azure pipelines (#5611) 2018-12-18 08:16:32 +08:00
commands.md Add a new `trim` command to trim whitespaces in the current line (#4772) 2018-10-06 20:18:52 +08:00
index.js refactor: move index.js and standalone.js to src (#5054) 2018-09-06 13:51:18 +08:00
jest.config.js chore: update azure pipelines (#5611) 2018-12-18 08:16:32 +08:00
package.json Bump Prettier dependency to 1.16.0 2019-01-20 16:01:28 +08:00
standalone.js refactor: move index.js and standalone.js to src (#5054) 2018-09-06 13:51:18 +08:00
yarn.lock Bump Prettier dependency to 1.16.0 2019-01-20 16:01:28 +08:00

README.md

Prettier Banner

Opinionated Code Formatter

JavaScript · TypeScript · Flow · JSX · JSON
CSS · SCSS · Less
HTML · Vue · Angular
GraphQL · Markdown · YAML
Your favorite language?

Azure Pipelines Build Status Codecov Coverage Status Blazing Fast
npm version weekly downloads from npm code style: prettier Chat on Gitter Follow Prettier on Twitter

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.