Milkdown / vscode

MIT License
257 stars 10 forks source link

chore(deps): update dependency eslint-plugin-simple-import-sort to v8 #35

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-simple-import-sort ^7.0.0 -> ^8.0.0 age adoption passing confidence

Release Notes

lydell/eslint-plugin-simple-import-sort ### [`v8.0.0`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-800-2022-09-03) [Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v7.0.0...v8.0.0) Node.js builtin modules prefixed with `node:` are now in a separate group by default (regex: `^node:`), above the packages group. (Node.js builtins *without* `node:` are still sorted together with npm packages like before.) Before: ```js import fs from "fs"; import _ from "lodash-es"; import { rmSync } from "node:fs"; ``` After: ```js import { rmSync } from "node:fs"; import fs from "fs"; import _ from "lodash-es"; ``` This is only a breaking change if you use the `node:` prefix in imports, and only in the form of that you need to autofix your files.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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.



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