prettier с фиксом для поддержки скобок с новой строки
 
 
 
 
 
 
Vai al file
Vitaliy Filippov 1916966910 Фикс против пидоров, которые не хотят поддерживать скобки с новой строки 2019-11-05 19:25:36 +03:00
.azure-pipelines Start JSDoc type linting (#6770) 2019-11-02 09:44:27 +01:00
.github Update FUNDING.yml 2019-06-14 11:02:35 -03:00
bin refactor(cli): separate files and make it pure as possible (#2730) 2017-09-03 19:21:06 +10:00
docs JSDoc type added in `src/common/util.js` (#6788) 2019-11-05 13:28:44 +02:00
scripts Switch `rollup-plugin-alias` to `@rollup/plugin-alias` (#6764) 2019-10-31 14:16:58 +02:00
src Фикс против пидоров, которые не хотят поддерживать скобки с новой строки 2019-11-05 19:25:36 +03:00
tests fix: numeric separators were removed from BigInt literals (#6796) 2019-11-04 18:21:29 +01:00
tests_config fix: get rid of CRLF (#5494) 2018-12-08 18:28:29 +08:00
tests_integration Gracefully handle nonexistent paths passed to --stdin-filepath. (#6687) 2019-11-02 15:56:26 +01:00
website Fix to follow #6811 (#6812) 2019-11-05 16:18:50 +02: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 Fix `.eslintrc.yml` code style (#6388) 2019-08-12 18:23:13 +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 fix: Adjacent JSX elements should be allowed in mdx (#6332) 2019-07-29 14:32:24 +03:00
.pre-commit-hooks.yaml docs(blog): 1.15 release (#5296) 2018-11-07 09:09:04 +08:00
.prettierignore set up cspell (#6684) 2019-10-25 00:07:17 +03:00
.prettierrc Add empty .prettierrc to project root (#6125) 2019-05-15 12:25:22 -03:00
.yarnrc chore(yarn): disable integrity migration 2018-10-27 21:01:26 +08:00
CHANGELOG.md Swap bases in changelog (#6251) 2019-07-01 08:24:41 +02:00
CHANGELOG.unreleased.md fix: numeric separators were removed from BigInt literals (#6796) 2019-11-04 18:21:29 +01:00
CODE_OF_CONDUCT.md Add a code of conduct (#5891) 2019-02-22 11:01:32 -05:00
CONTRIBUTING.md Add basic instructions on how to run Prettier locally for debugging. (#6686) 2019-10-20 16:19:47 +02: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 Run CI on node 12 (#6738) 2019-11-02 09:45:56 +01:00
commands.md Add a new `trim` command to trim whitespaces in the current line (#4772) 2018-10-06 20:18:52 +08:00
cspell.json Gracefully handle nonexistent paths passed to --stdin-filepath. (#6687) 2019-11-02 15:56:26 +01: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 eslint-plugin-react from 7.14.3 to 7.16.0 (#6807) 2019-11-05 16:18:12 +02:00
standalone.js refactor: move index.js and standalone.js to src (#5054) 2018-09-06 13:51:18 +08:00
tsconfig.json Start JSDoc type linting (#6770) 2019-11-02 09:44:27 +01:00
yarn.lock Bump eslint-plugin-react from 7.14.3 to 7.16.0 (#6807) 2019-11-05 16:18:12 +02: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.