build(deps-dev): bump eslint-config-prettier from 6.11.0 to 7.2.0 #156

Merged
dependabot-preview[bot] merged 1 commit from dependabot/npm_and_yarn/eslint-config-prettier-7.2.0 into master 2021-02-18 03:38:11 +00:00
dependabot-preview[bot] commented 2021-01-19 10:37:32 +00:00 (Migrated from github.com)

Bumps eslint-config-prettier from 6.11.0 to 7.2.0.

Changelog

Sourced from eslint-config-prettier's changelog.

Version 7.2.0 (2021-01-18)

  • Added: [@typescript-eslint/object-curly-spacing].
  • Added: [react/jsx-newline].

Version 7.1.0 (2020-12-19)

  • Added: [unicorn/empty-brace-spaces]. Thanks to fisker Cheung (@fisker)!

Version 7.0.0 (2020-12-05)

  • Changed: At least ESLint 7.0.0 is now required.

  • Changed: [arrow-body-style] and [prefer-arrow-callback] are no longer turned off by default. They only need to be turned off if you use [eslint-plugin-prettier]. If you do, add "prettier/prettier" to your "extends" array to turn them off again.

    {
      "extends": ["prettier", "prettier/prettier"],
      "plugins": ["prettier"],
      "rules": {
        "prettier/prettier": "error"
      }
    }
    

    Alternatively, update [eslint-plugin-prettier] to version 3.2.0 or later which automatically turns off these two rules in its "plugin:prettier/recommended" config.

    The CLI helper tool only warns about these rules if you have the "prettier/prettier" rule enabled for a file.

  • Changed: no-tabs is now a validatable rule. If you use it, you should enable allowIndentationTabs so that the rule works regardless of your Prettier config:

    {
      "rules": {
        "no-tabs": ["error", { "allowIndentationTabs": true }]
      }
    }
    
  • Changed: The CLI helper tool is now called just eslint-config-prettier instead of eslint-config-prettier-check. This is so that npx eslint-config-prettier always works regardless of whether you have already installed eslint-config-prettier or not: If you have, the local installation is used; if you haven’t, npx downloads a temporary copy.

  • Changed: The CLI helper tool no longer requires you to pipe the output of eslint --print-config to it. Instead, it does that automatically for you via ESLint API:s added in ESLint v7.

    Before:

    npx eslint --print-config index.js | npx eslint-config-prettier-check
    

    After:

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.11.0 to 7.2.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md">eslint-config-prettier's changelog</a>.</em></p> <blockquote> <h3>Version 7.2.0 (2021-01-18)</h3> <ul> <li>Added: [@typescript-eslint/object-curly-spacing].</li> <li>Added: [react/jsx-newline].</li> </ul> <h3>Version 7.1.0 (2020-12-19)</h3> <ul> <li>Added: [unicorn/empty-brace-spaces]. Thanks to fisker Cheung (<a href="https://github.com/fisker"><code>@fisker</code></a>)!</li> </ul> <h3>Version 7.0.0 (2020-12-05)</h3> <ul> <li> <p>Changed: At least ESLint 7.0.0 is now required.</p> </li> <li> <p>Changed: [arrow-body-style] and [prefer-arrow-callback] are no longer turned off by default. They only need to be turned off if you use [eslint-plugin-prettier]. If you do, add <code>&quot;prettier/prettier&quot;</code> to your <code>&quot;extends&quot;</code> array to turn them off again.</p> <pre lang="json"><code>{ &quot;extends&quot;: [&quot;prettier&quot;, &quot;prettier/prettier&quot;], &quot;plugins&quot;: [&quot;prettier&quot;], &quot;rules&quot;: { &quot;prettier/prettier&quot;: &quot;error&quot; } } </code></pre> <p>Alternatively, update [eslint-plugin-prettier] to version 3.2.0 or later which automatically turns off these two rules in its <code>&quot;plugin:prettier/recommended&quot;</code> config.</p> <p>The CLI helper tool only warns about these rules if you have the <code>&quot;prettier/prettier&quot;</code> <em>rule</em> enabled for a file.</p> </li> <li> <p>Changed: <code>no-tabs</code> is now a validatable rule. If you use it, you should enable <code>allowIndentationTabs</code> so that the rule works regardless of your Prettier config:</p> <pre lang="json"><code>{ &quot;rules&quot;: { &quot;no-tabs&quot;: [&quot;error&quot;, { &quot;allowIndentationTabs&quot;: true }] } } </code></pre> </li> <li> <p>Changed: The CLI helper tool is now called just <code>eslint-config-prettier</code> instead of <code>eslint-config-prettier-check</code>. This is so that <code>npx eslint-config-prettier</code> always works regardless of whether you have already installed <code>eslint-config-prettier</code> or not: If you have, the local installation is used; if you haven’t, <code>npx</code> downloads a temporary copy.</p> </li> <li> <p>Changed: The CLI helper tool no longer requires you to pipe the output of <code>eslint --print-config</code> to it. Instead, it does that automatically for you via ESLint API:s added in ESLint v7.</p> <p>Before:</p> <pre><code>npx eslint --print-config index.js | npx eslint-config-prettier-check </code></pre> <p>After:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/aca15b5860be5b97caa8f31fef0468125bb5c328"><code>aca15b5</code></a> eslint-config-prettier v7.2.0</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/5a0c4a9379d3fa24ce7c71139bc3c918b64a665a"><code>5a0c4a9</code></a> Update npm packages and add new rules</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/6b4625e165b89b4ee0f4e4b5a82f98e543cbd4bf"><code>6b4625e</code></a> Bump node-notifier from 8.0.0 to 8.0.1 (<a href="https://github-redirect.dependabot.com/prettier/eslint-config-prettier/issues/170">#170</a>)</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/c6ac365b0fa49c4432b9c9abfefe9e25b693503e"><code>c6ac365</code></a> eslint-config-prettier v7.1.0</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/ec5264882f3836d4f9ee08d660bcb93df27cc773"><code>ec52648</code></a> Update npm packages</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/6604b27d377ab8759a95ad65106a812667d21c79"><code>6604b27</code></a> Disable <code>unicorn/empty-brace-spaces</code> (<a href="https://github-redirect.dependabot.com/prettier/eslint-config-prettier/issues/169">#169</a>)</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/078db840bbc8a4403b5311ce216fc0274b7bac12"><code>078db84</code></a> Update npm packages</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/068fd1b72c1dd59eb423f5ba1b3193fdb8d340d0"><code>068fd1b</code></a> eslint-config-prettier v7.0.0</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/4d7347a8df6a93428eb14d2f5117149936c4f0ed"><code>4d7347a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/prettier/eslint-config-prettier/issues/168">#168</a> from prettier/next</li> <li><a href="https://github.com/prettier/eslint-config-prettier/commit/f0b8764fd5c9fb9df38f9d7e4b4f6ad42037dca9"><code>f0b8764</code></a> Various cleanups</li> <li>Additional commits viewable in <a href="https://github.com/prettier/eslint-config-prettier/compare/v6.11.0...v7.2.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=eslint-config-prettier&package-manager=npm_and_yarn&previous-version=6.11.0&new-version=7.2.0)](https://dependabot.com/compatibility-score/?dependency-name=eslint-config-prettier&package-manager=npm_and_yarn&previous-version=6.11.0&new-version=7.2.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
mcataford (Migrated from github.com) reviewed 2021-01-19 10:37:32 +00:00
codecov-io commented 2021-01-19 10:38:27 +00:00 (Migrated from github.com)

Codecov Report

Merging #156 (06b72ba) into master (401196d) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #156   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            1         1           
  Lines           62        62           
  Branches        16        16           
=========================================
  Hits            62        62           

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 401196d...06b72ba. Read the comment docs.

# [Codecov](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=h1) Report > Merging [#156](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=desc) (06b72ba) into [master](https://codecov.io/gh/mcataford/packwatch/commit/401196d62a52696c26fbf57259d9d5f28f13df34?el=desc) (401196d) will **not change** coverage. > The diff coverage is `n/a`. [![Impacted file tree graph](https://codecov.io/gh/mcataford/packwatch/pull/156/graphs/tree.svg?width=650&height=150&src=pr&token=IVEisJMCje)](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=tree) ```diff @@ Coverage Diff @@ ## master #156 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 1 1 Lines 62 62 Branches 16 16 ========================================= Hits 62 62 ``` ------ [Continue to review full report at Codecov](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=continue). > **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta) > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data` > Powered by [Codecov](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=footer). Last update [401196d...06b72ba](https://codecov.io/gh/mcataford/packwatch/pull/156?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).
This repo is archived. You cannot comment on pull requests.
No description provided.