igorkamyshev / trona

Write DB migrations with SQL and run them with a CLI
MIT License
30 stars 5 forks source link

build(deps-dev): bump eslint-plugin-import-helpers from 1.2.0 to 1.3.0 #342

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps eslint-plugin-import-helpers from 1.2.0 to 1.3.0.

Release notes

Sourced from eslint-plugin-import-helpers's releases.

Add support for a type group

Add support for classifying type imports as an entirely separate group, if desired.

From the docs:

The type group

TypeScript has what are called type imports, e.g.,

import type { ImportantType } from './thing';

If you would like to treat these type imports as a completely separate group (instead of sorted according to the file it was imported from), add a type group to your groups list.

With the type group:

/* eslint import-helpers/order-imports: ["error", {"groups": ['sibling', 'module', 'type']}] */
import foo from './foo';
import fs from 'fs';
import path from 'path';
import type { ImportantType } from './sibling';

Without the type group:

/* eslint import-helpers/order-imports: ["error", {"groups": ['sibling', 'module']}] */
import foo from './foo';
import type { ImportantType } from './sibling';
import fs from 'fs';
import path from 'path';

v1.2.1 - Support for large lists of imports

No release notes provided.

Commits
  • 0d9bf41 1.3.0
  • 49ca07b add support for the type group.
  • c7533f2 Merge pull request #48 from Tibfib/tibfib/tests-action
  • fa0222d Create tests.yml
  • 306c36e Merge pull request #47 from Tibfib/wvh/updated-deps
  • 71c8447 update node types version
  • bc9bb46 update all dependencies to the latest versions
  • 5fb3ef4 use npm and remove yarn. mark support as node v16+
  • 7690687 update gulp to v4, eslint and eslint-config-prettier
  • 6802ecc Merge pull request #45 from bmish/linting
  • 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] commented 2 years ago

Superseded by #345.