Skip to content
This repository has been archived by the owner on Mar 9, 2024. It is now read-only.

Bump eslint-config-prettier from 6.11.0 to 7.1.0 #138

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 21, 2020

Bumps eslint-config-prettier from 6.11.0 to 7.1.0.

Changelog

Sourced from eslint-config-prettier's changelog.

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:

    npx eslint-config-prettier index.js
    

... (truncated)

Commits
  • c6ac365 eslint-config-prettier v7.1.0
  • ec52648 Update npm packages
  • 6604b27 Disable unicorn/empty-brace-spaces (#169)
  • 078db84 Update npm packages
  • 068fd1b eslint-config-prettier v7.0.0
  • 4d7347a Merge pull request #168 from prettier/next
  • f0b8764 Various cleanups
  • 0d0b1ac Fix local eslint require
  • 7642c58 Make error message fit better for eslint-plugin-prettier
  • bc65d43 Don’t warn about eslint-plugin-prettier rules if prettier/prettier is off
  • Additional commits viewable in compare view

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 dependabot bot requested a review from MeilCli as a code owner December 21, 2020 06:45
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/eslint-config-prettier-7.1.0 branch from 23d6b27 to e58c0fc Compare January 1, 2021 12:03
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/eslint-config-prettier-7.1.0 branch from e58c0fc to 78f8fc4 Compare January 1, 2021 12:04
@github-actions github-actions bot merged commit 82c8906 into master Jan 1, 2021
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/eslint-config-prettier-7.1.0 branch January 1, 2021 12:05
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant