porting-assistant-dotnet-ui
porting-assistant-dotnet-ui copied to clipboard
build(deps-dev): Bump eslint-plugin-simple-import-sort from 5.0.3 to 10.0.0
Bumps eslint-plugin-simple-import-sort from 5.0.3 to 10.0.0.
Changelog
Sourced from eslint-plugin-simple-import-sort's changelog.
Version 10.0.0 (2023-01-27)
This release might move some imported items with
typearound. This is a breaking formatting change (that only affects TypeScript and Flow), but only in the form of that you need to autofix your files.In previous versions,
typespecifiers came first:import { type B, a } from "a"; export { type B, a } from "a";Now, all specifiers are sorted alphabetically, regardless of
type:import { a, type B } from "a"; export { a, type B } from "a";Motivation:
You might import a class for a type annotation using:
import { type MyClass, coolFunction, } from "example";Later, you also start instantiating that class in the same file (
new MyClass()), so you removetype.Previously, this resulted in a messy diff due to the class moving:
import { - type MyClass, coolFunction, + MyClass, } from "example";Now, the sorting with the
typekeyword would be:import { coolFunction, type MyClass, } from "example"; </tr></table>
... (truncated)
Commits
7d4947aeslint-plugin-simple-import-sort v10.0.03ef8f5aChange how type import/export specifiers are sorted (#125)a58f3edeslint-plugin-simple-import-sort v9.0.0f57b913Support imports and exports anywhere (#123)3968369Update npm packages (#122)12a8227Bump json5 from 1.0.1 to 1.0.2 (#120)24befb6eslint-plugin-simple-import-sort v8.0.00e3719ePutnode:*modules in a separate group by default (#111)5c8ef2aUpdate repo (#110)31dc885Update test snapshot- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)