This repository was archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
chore(deps): update dependency prettier to v1.18.2 #24
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/prettier-1.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3ceccfd
to
35a8c5d
Compare
35a8c5d
to
591e24b
Compare
591e24b
to
f91b446
Compare
f91b446
to
ddb3683
Compare
ddb3683
to
9bfc89b
Compare
9bfc89b
to
971543b
Compare
971543b
to
d4a2f8b
Compare
d4a2f8b
to
d8d1f40
Compare
d8d1f40
to
1e36b42
Compare
1e36b42
to
f4be993
Compare
f4be993
to
624e8c2
Compare
624e8c2
to
2c1f405
Compare
2c1f405
to
15d72be
Compare
15d72be
to
57b67ea
Compare
a630e63
to
f537097
Compare
f537097
to
8195bf5
Compare
8195bf5
to
bf4766a
Compare
bf4766a
to
b1b1248
Compare
b1b1248
to
845b5a8
Compare
845b5a8
to
eea24cc
Compare
eea24cc
to
54b21ef
Compare
54b21ef
to
7e0fed7
Compare
7e0fed7
to
5f6e33d
Compare
5f6e33d
to
8b7ef28
Compare
8b7ef28
to
2b9c1d1
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.4.4
->1.18.2
Release Notes
prettier/prettier
v1.18.2
Compare Source
diff
TypeScript: only add trailing commas in tuples for
--trailing-comma=all
([#6199] by @duailibe)In Prettier 1.18 we added trailing commas in tuples when
--trailing-comma=all
, but it was also adding for--trailing-comma=es5
.[#6199]: #6199
@duailibe: https://github.com/duailibe
v1.18.1
Compare Source
diff
TypeScript: Add trailing comma in tsx, only for arrow function (#6190 by @sosukesuzuki)
Prettier inserts a trailing comma to single type parameter for arrow functions in tsx, since v 1.18. But, this feature inserts a trailing comma to type parameter for besides arrow functions too (e.g, function , interface). This change fix it.
Config: Match dotfiles in config overrides (#6194 by @duailibe)
When using
overrides
in the config file, Prettier was not matching dotfiles (files that start with.
). This was fixed in 1.18.1v1.18.0
Compare Source
diff
🔗 Release Notes
v1.17.1
Compare Source
diff
Range: Fix ranged formatting not using the correct line width (#6050 by @mathieulj)
JavaScript: Fix closure compiler typecasts ([#5947] by @jridgewell)
If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.
JavaScript: respect parenthesis around optional chaining before await (#6087 by @evilebottnawi)
Handlebars: Fix {{else}}{{#if}} into {{else if}} merging (#6080 by @dcyriller)
JavaScript: Improved multiline closure compiler typecast comment detection (#6070 by @yangsu)
Previously, multiline closure compiler typecast comments with lines that
start with * weren't flagged correctly and the subsequent parenthesis were
stripped. Prettier 1.17.1 fixes this issue.
v1.17.0
Compare Source
diff
🔗 Release Notes
v1.16.4
Compare Source
diff
API: Fix
prettier.getSupportInfo()
reporting babel parser for older versions of Prettier. (#5826 by @azz)In version
1.16.0
of Prettier, thebabylon
parser was renamed tobabel
. Unfortunately this lead to a minor breaking change:prettier.getSupportInfo('1.15.0')
would report that it supportedbabel
, notbabylon
, which breaks text-editor integrations. This has now been fixed.v1.16.3
Compare Source
diff
TypeScript: Revert "Update typescript-estree to new package name" (#5818 by @ikatyang)
There's an internal change introduced in Prettier 1.16.2,
which updated
typescript-estree
to its new package name,but unfortunately it broke the output
so we reverted it as a temporary workaround for now.
v1.16.2
Compare Source
diff
CLI: Fix CI detection to avoid unwanted TTY behavior (#5804 by @kachkaev)
In Prettier 1.16.0 and 1.16.1,
--list-different
and--check
logged every file in some CI environments, instead of just unformatted files.This unwanted behavior is now fixed.
HTML: Do not format non-normal whitespace as normal whitespace (#5797 by @ikatyang)
Previously, only non-breaking whitespaces (U+00A0) are marked as non-normal whitespace,
which means other non-normal whitespaces such as non-breaking narrow whitespaces (U+202F)
could be formatted as normal whitespaces, which breaks the output. We now follow the spec to
exclude all non-ASCII whitespace from whitespace normalization.
(
·
represents a non-breaking narrow whitespace)JavaScript: Fix record type cast comment detection (#5793 by @yangsu)
Previously, type cast comments with record types were ignored and prettier
stripped the subsequent parens. Prettier 1.16.2 handles these cases correctly.
v1.16.1
Compare Source
diff
JavaScript: Do not format functions with arguments as react hooks (#5778 by @SimenB)
The formatting added in Prettier 1.16 would format any function receiving an
arrow function and an array literal to match React Hook's documentation.
Prettier will now format this the same as before that change if the arrow
function receives any arguments.
JavaScript: Add necessary parentheses for decorators (#5785 by @ikatyang)
Parentheses for decorators with nested call expressions are optional for legacy decorators
but they're required for decorators in the current proposal.
TypeScript: Stable parentheses for function type in the return type of arrow function (#5790 by @ikatyang)
There's a regression introduced in 1.16 that
parentheses for function type in the return type of arrow function were kept adding/removing.
Their parentheses are always printed now.
MDX: Correctly recognize inline JSX (#5783 by @ikatyang)
Previously, some inline JSXs are wrongly recognized as block HTML/JSX,
which causes unexpected behaviors. This issue is now fixed.
v1.16.0
Compare Source
diff
🔗 Release Notes
v1.15.3
Compare Source
diff
htm
(#5565)html
templates (#5544)module
intonamespace
and break/hug their body correctly (#5551)// prettier-ignore
(#5469)<! ... >
/<? ... >
(#5565)<script>
(#5527)<textarea>
are sensitive (#5468)<pre>
correctly (#5473)then
andelse
in*ngIf
(#5542)slot-scope
correctly (#5563)---
(#5502)ignored
field correctly in.getFileInfo()
with absolute filePath (#5570).js
config files did not respect.clearConfigCache()
(#5558)unset
in.editorconfig
(#5550)0
for--list-different
+--write
(#5512)v1.15.2
Compare Source
diff
createSelector
as function composition (#5430)extends
(#5432)module
andnamespace
correctly (#5432)<pre>
with interpolation (#5400)<template>
with unknownlang
(#5388)+
(#5405)v-on
attribute value (#5418)v1.15.1
Compare Source
diff
v1.15.0
Compare Source
diff
🔗 Release Notes
v1.14.3
Compare Source
diff
v1.14.2
Compare Source
diff
v1.14.1
Compare Source
diff
it("should ...", fakeAsync(() => { ...
correctly. (#4954)static
(#4910)v1.14.0
Compare Source
diff
🔗 Release Notes
v1.13.7
Compare Source
diff
eval("require")
in the distributed code (#4766)v1.13.6
Compare Source
diff
v1.13.5
Compare Source
diff
v1.13.4
Compare Source
diff
v1.13.3
Compare Source
diff
hasOwnProperty
and other functions inObject
's prototype (#4603)--debug-check
and--list-different
(#4600)v1.13.2
Compare Source
diff
v1.13.1
Compare Source
diff
v1.13.0
Compare Source
diff
🔗 Release Notes
v1.12.1
Compare Source
diff
v1.12.0
Compare Source
diff
🔗 Release Notes
v1.11.1
Compare Source
diff
v1.11.0
Compare Source
diff
🔗 Release Notes
v1.10.2
Compare Source
diff
v1.10.1
Compare Source
diff
v1.10.0
Compare Source
diff
🔗 Release Notes
v1.9.2
Compare Source
diff
/**
in docblocks (#3430 by duailibe)get
andset
class properties arrows would print an unnecessary semicolon with--no-semi
(#3434 by duailibe).editorconfig
files (#3439 by josephfrazier)!
character) (#3442 by duailibe)pretter-ignore
comment is present (#3448 by duailibe)v1.9.1
Compare Source
diff
**/*
which would try to format directories (#3411 by duailibe).editorconfig
hadmax_line_length = "off"
(#3412 by duailibe)v1.9.0
Compare Source
diff
🔗 Release Notes
v1.8.2
Compare Source
diff
--no-prose-wrap
option (#3199 by ikatyang)v1.8.1
Compare Source
diff
_
-style emphasis is available (#3186 by ikatyang)code
(#3180 by ikatyang)v1.8.0
Compare Source
diff
🔗 Release Notes
v1.7.4
Compare Source
diff
v1.7.3
Compare Source
diff
v1.7.2
Compare Source
diff
v1.7.1
Compare Source
diff
&class
in SCSS/Less selectors (#2834 by lydell)--help
(#2847 by ikatyang)config-precedence
(#2894 by ikatyang)v1.7.0
Compare Source
diff
🔗 Release Notes
v1.6.1
Compare Source
diff
v1.6.0
Compare Source
diff
🔗 Release Notes
v1.5.3
Compare Source
diff
v1.5.2
Compare Source
diff
v1.5.1
Compare Source
diff
v1.5.0
Compare Source
diff
🔗 Release Notes
Renovate configuration
📅 Schedule: "before 3am on Monday" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "
rebase!
".🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.