This repository was archived by the owner on Sep 9, 2020. It is now read-only.
chore(deps): update dependency eslint-config-prettier to v6 - #114
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency eslint-config-prettier to v6#114renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
July 7, 2019 00:35
37c56e8 to
26b9038
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
July 20, 2019 23:46
26b9038 to
8ed3f15
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
August 4, 2019 00:30
8ed3f15 to
985a677
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
August 18, 2019 00:34
e275711 to
584fdc1
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
August 19, 2019 17:06
584fdc1 to
99c3610
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
September 3, 2019 16:16
1de54a4 to
8822ba2
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
September 10, 2019 15:26
8822ba2 to
1121fef
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
September 22, 2019 00:46
1121fef to
5ce2e04
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
October 5, 2019 21:42
5ce2e04 to
8e2a7a2
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
October 27, 2019 00:54
995e767 to
1115a38
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
November 17, 2019 00:39
6b14cf0 to
476c436
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
November 19, 2019 06:23
476c436 to
d7ba5e3
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
December 21, 2019 00:16
fe5d89a to
8577d3f
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
3 times, most recently
from
December 27, 2019 12:08
b727a80 to
e8ba01a
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
2 times, most recently
from
January 18, 2020 00:37
b31c58b to
b31b0db
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
January 31, 2020 23:23
b31b0db to
571ff0b
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
February 8, 2020 00:37
571ff0b to
f9013fb
Compare
renovate
Bot
force-pushed
the
renovate/eslint-config-prettier-6.x
branch
from
February 9, 2020 02:48
f9013fb to
7489bba
Compare
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
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:
3.6.0->6.10.0Release Notes
prettier/eslint-config-prettier
v6.10.0Compare Source
Koba (@鈥媦biquitous)!!
v6.9.0Compare Source
v6.8.0Compare Source
v6.7.0Compare Source
Koba (@鈥媦biquitous)!
v6.6.0Compare Source
[vue/keyword-spacing]. Thanks to @鈥媥catliu!
v6.5.0Compare Source
(@鈥媋lexilyaev)!
v6.4.0Compare Source
(@鈥媦angmingshan)!
v6.3.0Compare Source
(@鈥媦biquitous)!
v6.2.0Compare Source
rule][@鈥媡ypescript-eslint/quotes-special]). Thanks to Masafumi Koba
(@鈥媦biquitous)!
v6.1.0Compare Source
Masafumi Koba (@鈥媦biquitous)!
v6.0.0Compare Source
Changed: The CLI helper tool now considers [no-confusing-arrow] to conflict
if you use the default value of its
allowParensoption. The default waschanged to
truein ESLint 6, which conflicts with Prettier.If the CLI helper tool gives you errors about this after upgrading, the
solution is to change this:
{ "rules": { "no-confusing-arrow": ["error"] } }Into this:
{ "rules": { "no-confusing-arrow": ["error", { "allowParens": false }] } }The latter works in both ESLint 6 as well as in ESLint 5 and older.
Improved:
eslint --print-configusage instructions. The CLI tool helptext as well as the documentation has been updated to suggest commands that
work in ESLint 6.0 as well as in ESLint 5 and older. (Instead of
eslint --print-config ., useeslint --print-config path/to/main.js.)v5.1.0Compare Source
v5.0.0Compare Source
Removed: [react/self-closing-comp]. This rule was added in v4.1.0 not
because it conflicted with Prettier but because it was unnecessary when
using Prettier. However, in v1.18.0 [Prettier stopped converting empty
elements to self-closing elements][prettier-self-closing]. So the rule is
not unnecessary anymore.
If you use Prettier v1.17.1 or older you should be able to upgrade
eslint-config-prettier to v5.0.0 without having to do anything else.
If you use Prettier v1.18.0 or newer, you might get lint errors about for
example changing
<div></div>into<div />. You have two options:eslint --fixif you prefer to enforce self-closing elements wherepossible. This should fix all the errors.
"react/self-closing-comp": "off"to your ESLint config if you useautofix from your editor and you face the same [issue as Prettier
did][prettier-self-closing].
Changed: Node.js 6 is no longer officially supported, but v5.0.0 should
still work with it.
v4.3.0Compare Source
[vue/block-spacing], [vue/brace-style] and [vue/comma-dangle].
[@鈥媡ypescript-eslint/func-call-spacing] and [@鈥媡ypescript-eslint/semi].
v4.2.0Compare Source
(@鈥婬oishin) and Jen Gorfine (@鈥媕gorfine)!
v4.1.0Compare Source
v4.0.0Compare Source
replaced with support for its successor [@鈥媡ypescript-eslint/eslint-plugin].
Thanks to TANIGUCHI Masaya (@鈥媡a2gch) and everyone else who helped with this!
[special rules][arrow-special], since they might cause problems if using
[eslint-plugin-prettier] and
--fix. They are turned off by default, and theCLI helper tool will warn about them (but not error if you do enable them).
This won鈥檛 break your linting checks, but do note that these rules will be
disabled unless you explicitly enable them again, and that you might see new
warnings when running the CLI helper tool.
Renovate configuration
馃搮 Schedule: "every weekend" in timezone Europe/Paris.
馃殾 Automerge: Disabled by config. Please merge this manually once you are satisfied.
鈾伙笍 Rebasing: Whenever PR is stale, or if you tick the rebase/retry checkbox below.
馃敃 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.