diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dba827485..d4288348f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ To get recent changes on prettier (TBD prettier/prettier) in a nice format: $ git log --pretty=format:"- %s" rev1..rev2 | sed 's/#\([0-9]*\)/\[prettier\/prettier#\1\]\(https:\/\/github.com\/prettier\/prettier\/pull\/\1\)/' -- --> -## prettierx 0.18.3-dev +## prettierx 0.19.0-dev [compare prettierx-0.18.2...dev](https://github.com/brodybits/prettierx/compare/prettierx-0.18.2...dev) diff --git a/README.md b/README.md index 60d216cd89..b31e10bd1d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ prettierx ## Additional prettierX options - `--align-object-properties` (`alignObjectProperties: true`): Align colons in multiline object literals (not applied with any of the JSON parsers). -- `--offset-ternary-expressions` (`offsetTernaryExpressions: true`): Indent and align ternary expression branches more consistently with "Standard JS" (similar to the corresponding eslint option). +- `--offset-ternary-expressions` (`offsetTernaryExpressions: true`): Indent and align ternary expression branches more consistently with "Standard JS" (similar to the corresponding eslint option). NOT recommended together with `--use-tabs` due to KNOWN ISSUE: [`brodybits/prettierx#552`](https://github.com/brodybits/prettierx/issues/552) - `--space-before-function-paren` (`spaceBeforeFunctionParen: true`): Put a space before function parenthesis in all declarations (similar to the corresponding eslint option). (Default is to put a space before function parenthesis for untyped anonymous functions only.) - `--generator-star-spacing` (`generatorStarSpacing: true`): Put spaces around the star (`*`) in generator functions (before and after - similar to the corresponding eslint option). (Default is after only.) - `--yield-star-spacing` (`yieldStarSpacing: true`): Put spaces around the star (`*`) in `yield*` expressions (before and after - similar to the corresponding eslint option). (Default is after only.) diff --git a/docs/options.md b/docs/options.md index 098654d8d9..53db3b5fe3 100644 --- a/docs/options.md +++ b/docs/options.md @@ -298,7 +298,7 @@ Put spaces between computed property brackets (similar to the corresponding esli ## Offset ternary expressions -Indent and align ternary expression branches more consistently with "Standard JS" (similar to the corresponding eslint option). +Indent and align ternary expression branches more consistently with "Standard JS" (similar to the corresponding eslint option). NOT recommended together with `--use-tabs` due to KNOWN ISSUE: [`brodybits/prettierx#552`](https://github.com/brodybits/prettierx/issues/552) | Default | CLI Override | API Override | | ------- | ------------------------------ | ---------------------------------- | diff --git a/package.json b/package.json index aab66c541a..06dacde757 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prettierx", - "version": "0.18.3-dev", + "version": "0.19.0-dev", "description": "prettierx - less opinionated code formatter fork of prettier", "bin": "./bin/prettierx.js", "repository": "brodybits/prettierx",