chore(deps): update dependency eslint-config-prettier to v8 #276

Merged
renovate[bot] merged 2 commits from renovate/eslint-config-prettier-8.x into master 2021-06-05 14:56:20 +00:00
renovate[bot] commented 2021-06-04 19:31:06 +00:00 (Migrated from github.com)

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-config-prettier ^7.2.0 -> 8.3.0 age adoption passing confidence

Release Notes

prettier/eslint-config-prettier

v8.3.0

Compare Source

v8.2.0

Compare Source

  • Added: [flowtype/quotes]. Thanks to Martin Zlámal (@​mrtnzlml)!

v8.1.0

Compare Source

  • Added: [flowtype/object-type-curly-spacing].
  • Added: Dummy files for the configs removed in 8.0.0. The dummy files throw an error that try to guide you how to upgrade.

v8.0.0

Compare Source

  • Changed: All configs have been merged into one!

    To upgrade, change:

    {
      "extends": [
        "some-other-config-you-use",
        "prettier",
        "prettier/@​typescript-eslint",
        "prettier/babel",
        "prettier/flowtype",
        "prettier/react",
        "prettier/standard",
        "prettier/unicorn",
        "prettier/vue"
      ]
    }
    

    Into:

    {
      "extends": [
        "some-other-config-you-use",
        "prettier"
      ]
    }
    

    The "prettier" config now includes not just ESLint core rules, but also rules from all plugins. Much simpler!

    So … what’s the catch? Why haven’t we done this earlier? Turns out it’s just a sad mistake. I (@​lydell) was confused when testing, and thought that turning off unknown rules in a config was an error. Thanks to Georgii Dolzhykov (@​thorn0) for pointing this out!

    If you use [eslint-plugin-prettier], all you need is [plugin:prettier/recommended]:

    {
      "extends": [
        "some-other-config-you-use",
        "plugin:prettier/recommended"
      ]
    }
    

    (The ["prettier/prettier" config][prettier-prettier-config] still exists separately. It’s the odd one out. The main "prettier" config does not include the rules from it.)

  • Changed: The CLI helper tool now only prints warnings for [arrow-body-style] and [prefer-arrow-callback], just like other “special rules.” This means that if you’ve decided to use those rules and [eslint-plugin-prettier] at the same time, you’ll get warnings but exit code zero (success).


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-config-prettier](https://togithub.com/prettier/eslint-config-prettier) | [`^7.2.0` -> `8.3.0`](https://renovatebot.com/diffs/npm/eslint-config-prettier/7.2.0/8.3.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.3.0/compatibility-slim/7.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.3.0/confidence-slim/7.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prettier/eslint-config-prettier</summary> ### [`v8.3.0`](https://togithub.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md#Version-830-2021-04-24) [Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.2.0...v8.3.0) - Added: Support for \[[@&#8203;babel/eslint-plugin](https://togithub.com/babel/eslint-plugin)]. Thanks to Chip Zhang ([@&#8203;ChipZhang](https://togithub.com/ChipZhang)) for the heads-up! (\[eslint-plugin-babel] is still supported, too.) ### [`v8.2.0`](https://togithub.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md#Version-820-2021-04-13) [Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.1.0...v8.2.0) - Added: \[flowtype/quotes]. Thanks to Martin Zlámal ([@&#8203;mrtnzlml](https://togithub.com/mrtnzlml))! ### [`v8.1.0`](https://togithub.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md#Version-810-2021-02-24) [Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.0.0...v8.1.0) - Added: \[flowtype/object-type-curly-spacing]. - Added: Dummy files for the configs removed in 8.0.0. The dummy files throw an error that try to guide you how to upgrade. ### [`v8.0.0`](https://togithub.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md#Version-800-2021-02-21) [Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v7.2.0...v8.0.0) - Changed: All configs have been merged into one! To upgrade, change: ```json { "extends": [ "some-other-config-you-use", "prettier", "prettier/@&#8203;typescript-eslint", "prettier/babel", "prettier/flowtype", "prettier/react", "prettier/standard", "prettier/unicorn", "prettier/vue" ] } ``` Into: <!-- prettier-ignore --> ```json { "extends": [ "some-other-config-you-use", "prettier" ] } ``` The `"prettier"` config now includes not just ESLint core rules, but also rules from all plugins. Much simpler! So … what’s the catch? Why haven’t we done this earlier? Turns out it’s just a sad mistake. I ([@&#8203;lydell](https://togithub.com/lydell)) was confused when testing, and thought that turning off unknown rules in a config was an error. Thanks to Georgii Dolzhykov ([@&#8203;thorn0](https://togithub.com/thorn0)) for pointing this out! If you use \[eslint-plugin-prettier], all you need is \[plugin:prettier/recommended]: <!-- prettier-ignore --> ```json { "extends": [ "some-other-config-you-use", "plugin:prettier/recommended" ] } ``` (The \["prettier/prettier" config]\[prettier-prettier-config] still exists separately. It’s the odd one out. The main `"prettier"` config does *not* include the rules from it.) - Changed: The CLI helper tool now only prints warnings for \[arrow-body-style] and \[prefer-arrow-callback], just like other “special rules.” This means that if you’ve decided to use those rules and \[eslint-plugin-prettier] at the same time, you’ll get warnings but exit code zero (success). </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/mcataford/packwatch).
codecov-commenter commented 2021-06-04 19:32:31 +00:00 (Migrated from github.com)

Codecov Report

Merging #276 (a2d2145) into master (5e1dec8) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #276   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            4         4           
  Lines           73        73           
  Branches        12        12           
=========================================
  Hits            73        73           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3ca6748...a2d2145. Read the comment docs.

# [Codecov](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford) Report > Merging [#276](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford) (a2d2145) into [master](https://codecov.io/gh/mcataford/packwatch/commit/5e1dec842a89b19dab994c995a5fdd0e8f13f96e?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford) (5e1dec8) will **not change** coverage. > The diff coverage is `n/a`. [![Impacted file tree graph](https://codecov.io/gh/mcataford/packwatch/pull/276/graphs/tree.svg?width=650&height=150&src=pr&token=IVEisJMCje&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford)](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford) ```diff @@ Coverage Diff @@ ## master #276 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 4 4 Lines 73 73 Branches 12 12 ========================================= Hits 73 73 ``` ------ [Continue to review full report at Codecov](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford). > **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford) > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data` > Powered by [Codecov](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=footer&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford). Last update [3ca6748...a2d2145](https://codecov.io/gh/mcataford/packwatch/pull/276?src=pr&el=lastupdated&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Marc+Cataford).
This repo is archived. You cannot comment on pull requests.
No description provided.