eslint-config-hardcore icon indicating copy to clipboard operation
eslint-config-hardcore copied to clipboard

Bump putout from 24.6.0 to 27.0.1

Open dependabot[bot] opened this issue 1 year ago • 0 comments

Bumps putout from 24.6.0 to 27.0.1.

Release notes

Sourced from putout's releases.

putout v27.0.1

🐞 fix

  • (putout) match: .eslintrc.* -> .eslintrc{*,.json}

putout v27.0.0

Dropped support of eslint-plugin-node

eslint-plugin-node wasn't updated for two years, so it was forked to eslint-plugin-n which is well supported.

Thanks a lot @​aladdin-add for maintaining this fork!

eslint-plugin-putout now uses eslint-plugin-n as direct dependency (to have same rules disabled, for markdown files, for example). So to avoid any confusion also 🐊Putout has a major version bump with a new rule in @putout/plugin-eslint called convert-node-to-n:

{
    "extends": [
        "plugin:putout/safe+align",
-       "plugin:node/recommended"
+       "plugin:n/recommended"
    ],
    "plugins": [
        "putout",
-       "node"
+       "n"
    ]
}

All you need to do is to use nupdate tool:

nupdate putout -c;
nupdate eslint-plugin-putout -c;
nupdate eslint-plugin-n -aDc;
yarn;
putout --fix .
nupdate eslint-plugin-node -r;
git commit -am 'feature: now I have eslint-plugin-n ✅'

Also GitHub Actions benefit from this change, since it is already has an auto fix, and if only .eslintrc.json will be updated everything will broke down 🤷‍♂️.

Have a nice day 🎉!

🔥 feature

  • (putout) add ability to convert eslint-plugin-node to eslint-plugin-n

... (truncated)

Commits
  • dcd988f chore(package) v27.0.1
  • 6925372 fix(putout) match: .eslintrc.* -> .eslintrc{*,.json}
  • 3795a21 chore(putout) actions: lint ☘️
  • afb10a1 chore(package) v27.0.0
  • 214331a feature(putout) add a bility to convert eslint-plugin-node to eslint-plugin-n
  • 57c55c3 chore(package) v26.25.1
  • c097d51 fix(putout) freeze @​putout/plugin-eslint@​4.1.0
  • 5af429b feature(package) hermes-parser v0.9.0
  • 270290c chore(package) v5.5.3
  • 8343a9e fix(@​putout/test) description: add 🐊
  • 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[bot] avatar Jul 24 '22 19:07 dependabot[bot]