Update checked-in dependencies
This commit is contained in:
parent
6b0d45a5c6
commit
cc1adb825a
4247 changed files with 144820 additions and 149530 deletions
493
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
493
node_modules/eslint-plugin-import/CHANGELOG.md
generated
vendored
|
|
@ -6,6 +6,81 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.23.4] - 2021-05-29
|
||||
|
||||
### Fixed
|
||||
- [`no-import-module-exports`]: Don't crash if packages have no entrypoint ([#2099], thanks [@eps1lon])
|
||||
- [`no-extraneous-dependencies`]: fix package name algorithm ([#2097], thanks [@paztis])
|
||||
|
||||
## [2.23.3] - 2021-05-21
|
||||
|
||||
### Fixed
|
||||
- [`no-restricted-paths`]: fix false positive matches ([#2090], thanks [@malykhinvi])
|
||||
- [`no-cycle`]: ignore imports where imported file only imports types of importing file ([#2083], thanks [@cherryblossom000])
|
||||
- [`no-cycle`]: fix false negative when file imports a type after importing a value in Flow ([#2083], thanks [@cherryblossom000])
|
||||
- [`order`]: restore default behavior unless `type` is in groups ([#2087], thanks [@grit96])
|
||||
|
||||
### Changed
|
||||
- [Docs] Add `no-relative-packages` to list of to the list of rules ([#2075], thanks [@arvigeus])
|
||||
|
||||
## [2.23.2] - 2021-05-15
|
||||
|
||||
### Changed
|
||||
- [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+
|
||||
|
||||
## [2.23.1] - 2021-05-14
|
||||
|
||||
### Fixed
|
||||
- [`newline-after-import`]: fix crash with `export {}` syntax ([#2063], [#2056], thanks [@ljharb])
|
||||
- `ExportMap`: do not crash when tsconfig lacks `.compilerOptions` ([#2067], thanks [@ljharb])
|
||||
- [`order`]: fix alphabetical sorting ([#2071], thanks [@grit96])
|
||||
|
||||
## [2.23.0] - 2021-05-13
|
||||
|
||||
### Added
|
||||
- [`no-commonjs`]: Also detect require calls with expressionless template literals: ``` require(`x`) ``` ([#1958], thanks [@FloEdelmann])
|
||||
- [`no-internal-modules`]: Add `forbid` option ([#1846], thanks [@guillaumewuip])
|
||||
- add [`no-relative-packages`] ([#1860], [#966], thanks [@tapayne88] [@panrafal])
|
||||
- add [`no-import-module-exports`] rule: report import declarations with CommonJS exports ([#804], thanks [@kentcdodds] and [@ttmarek])
|
||||
- [`no-unused-modules`]: Support destructuring assignment for `export`. ([#1997], thanks [@s-h-a-d-o-w])
|
||||
- [`order`]: support type imports ([#2021], thanks [@grit96])
|
||||
- [`order`]: Add `warnOnUnassignedImports` option to enable warnings for out of order unassigned imports ([#1990], thanks [@hayes])
|
||||
|
||||
### Fixed
|
||||
- [`export`]/TypeScript: properly detect export specifiers as children of a TS module block ([#1889], thanks [@andreubotella])
|
||||
- [`order`]: ignore non-module-level requires ([#1940], thanks [@golopot])
|
||||
- [`no-webpack-loader-syntax`]/TypeScript: avoid crash on missing name ([#1947], thanks [@leonardodino])
|
||||
- [`no-extraneous-dependencies`]: Add package.json cache ([#1948], thanks [@fa93hws])
|
||||
- [`prefer-default-export`]: handle empty array destructuring ([#1965], thanks [@ljharb])
|
||||
- [`no-unused-modules`]: make type imports mark a module as used (fixes #1924) ([#1974], thanks [@cherryblossom000])
|
||||
- [`no-cycle`]: fix perf regression ([#1944], thanks [@Blasz])
|
||||
- [`first`]: fix handling of `import = require` ([#1963], thanks [@MatthiasKunnen])
|
||||
- [`no-cycle`]/[`extensions`]: fix isExternalModule usage ([#1696], thanks [@paztis])
|
||||
- [`extensions`]/[`no-cycle`]/[`no-extraneous-dependencies`]: Correct module real path resolution ([#1696], thanks [@paztis])
|
||||
- [`no-named-default`]: ignore Flow import type and typeof ([#1983], thanks [@christianvuerings])
|
||||
- [`no-extraneous-dependencies`]: Exclude flow `typeof` imports ([#1534], thanks [@devongovett])
|
||||
- [`newline-after-import`]: respect decorator annotations ([#1985], thanks [@lilling])
|
||||
- [`no-restricted-paths`]: enhance performance for zones with `except` paths ([#2022], thanks [@malykhinvi])
|
||||
- [`no-unresolved`]: check import() ([#2026], thanks [@aladdin-add])
|
||||
|
||||
### Changed
|
||||
- [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
|
||||
- [Docs] [`no-named-as-default`]: add semicolon ([#1897], thanks [@bicstone])
|
||||
- [Docs] `no-extraneous-dependencies`: correct peerDependencies option default to `true` ([#1993], thanks [@dwardu])
|
||||
- [Docs] `order`: Document options required to match ordering example ([#1992], thanks [@silviogutierrez])
|
||||
- [Tests] `no-unresolved`: add tests for `import()` ([#2012], thanks [@davidbonnet])
|
||||
- [Docs] Add import/recommended ruleset to README ([#2034], thanks [@edemaine])
|
||||
|
||||
## [2.22.1] - 2020-09-27
|
||||
### Fixed
|
||||
- [`default`]/TypeScript: avoid crash on `export =` with a MemberExpression ([#1841], thanks [@ljharb])
|
||||
- [`extensions`]/importType: Fix @/abc being treated as scoped module ([#1854], thanks [@3nuc])
|
||||
- allow using rest operator in named export ([#1878], thanks [@foray1010])
|
||||
- [`dynamic-import-chunkname`]: allow single quotes to match Webpack support ([#1848], thanks [@straub])
|
||||
|
||||
### Changed
|
||||
- [`export`]: add tests for a name collision with `export * from` ([#1704], thanks @tomprats)
|
||||
|
||||
## [2.22.0] - 2020-06-26
|
||||
### Added
|
||||
- [`no-unused-modules`]: consider exported TypeScript interfaces, types and enums ([#1819], thanks [@nicolashenry])
|
||||
|
|
@ -50,7 +125,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|||
- [`no-unused-modules`]: Fix re-export not counting as usage when used in combination with import ([#1722], thanks [@Ephem])
|
||||
- [`no-duplicates`]: Handle TS import type ([#1676], thanks [@kmui2])
|
||||
- [`newline-after-import`]: recognize decorators ([#1139], thanks [@atos1990])
|
||||
- [`no-unused-modules`]: Revert "[flow] `no-unused-modules`: add flow type support" ([#1770], thanks [@Hypnosphi])
|
||||
- [`no-unused-modules`]: Revert "[flow] [`no-unused-modules`]: add flow type support" ([#1770], thanks [@Hypnosphi])
|
||||
- TypeScript: Add nested namespace handling ([#1763], thanks [@julien1619])
|
||||
- [`namespace`]/`ExportMap`: Fix interface declarations for TypeScript ([#1764], thanks [@julien1619])
|
||||
- [`no-unused-modules`]: avoid order-dependence ([#1744], thanks [@darkartur])
|
||||
|
|
@ -60,7 +135,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|||
### Changed
|
||||
- [Refactor] `no-extraneous-dependencies`: use moduleVisitor ([#1735], thanks [@adamborowski])
|
||||
- TypeScript config: Disable [`named`][] ([#1726], thanks [@astorije])
|
||||
- [readme] Remove duplicate no-unused-modules from docs ([#1690], thanks [@arvigeus])
|
||||
- [readme] Remove duplicate [`no-unused-modules`] from docs ([#1690], thanks [@arvigeus])
|
||||
- [Docs] `order`: fix bad inline config ([#1788], thanks [@nickofthyme])
|
||||
- [Tests] Add fix for Windows Subsystem for Linux ([#1786], thanks [@manuth])
|
||||
- [Docs] `no-unused-rules`: Fix docs for unused exports ([#1776], thanks [@barbogast])
|
||||
|
|
@ -85,7 +160,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|||
- [`no-duplicates`]: allow duplicate imports if one is a namespace and the other not ([#1612], thanks [@sveyret])
|
||||
- Add some missing rule meta schemas and types ([#1620], thanks [@bmish])
|
||||
- [`named`]: for importing from a module which re-exports named exports from a `node_modules` module ([#1569], [#1447], thanks [@redbugz], [@kentcdodds])
|
||||
- [`order`]: Fix alphabetize for mixed requires and imports ([#5625], thanks [@wschurman])
|
||||
- [`order`]: Fix alphabetize for mixed requires and imports ([#1626], thanks [@wschurman])
|
||||
|
||||
### Changed
|
||||
- [`import/external-module-folders` setting] behavior is more strict now: it will only match complete path segments ([#1605], thanks [@skozin])
|
||||
|
|
@ -208,7 +283,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|||
- aliased internal modules that look like core modules ([#1297], thanks [@echenley])
|
||||
- [`namespace`]: add check for null ExportMap ([#1235], [#1144], thanks [@ljqx])
|
||||
- [ExportMap] fix condition for checking if block comment ([#1234], [#1233], thanks [@ljqx])
|
||||
- Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-import`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
|
||||
- Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-imports`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
|
||||
- [`export`]: false positives for TypeScript type + value export ([#1319], thanks [@bradzacher])
|
||||
- [`export`]: Support TypeScript namespaces ([#1320], [#1300], thanks [@bradzacher])
|
||||
|
||||
|
|
@ -701,6 +776,7 @@ for info on changes for earlier releases.
|
|||
[`no-duplicates`]: ./docs/rules/no-duplicates.md
|
||||
[`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md
|
||||
[`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md
|
||||
[`no-import-module-exports`]: ./docs/rules/no-import-module-exports.md
|
||||
[`no-internal-modules`]: ./docs/rules/no-internal-modules.md
|
||||
[`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md
|
||||
[`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md
|
||||
|
|
@ -709,6 +785,8 @@ for info on changes for earlier releases.
|
|||
[`no-named-export`]: ./docs/rules/no-named-export.md
|
||||
[`no-namespace`]: ./docs/rules/no-namespace.md
|
||||
[`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md
|
||||
[`no-relative-packages`]: ./docs/rules/no-relative-packages.md
|
||||
[`no-relative-parent-imports`]: ./docs/rules/no-relative-parent-imports.md
|
||||
[`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md
|
||||
[`no-self-import`]: ./docs/rules/no-self-import.md
|
||||
[`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md
|
||||
|
|
@ -722,9 +800,37 @@ for info on changes for earlier releases.
|
|||
|
||||
[`memo-parser`]: ./memo-parser/README.md
|
||||
|
||||
[#2099]: https://github.com/benmosher/eslint-plugin-import/pull/2099
|
||||
[#2097]: https://github.com/benmosher/eslint-plugin-import/pull/2097
|
||||
[#2090]: https://github.com/benmosher/eslint-plugin-import/pull/2090
|
||||
[#2087]: https://github.com/benmosher/eslint-plugin-import/pull/2087
|
||||
[#2083]: https://github.com/benmosher/eslint-plugin-import/pull/2083
|
||||
[#2075]: https://github.com/benmosher/eslint-plugin-import/pull/2075
|
||||
[#2071]: https://github.com/benmosher/eslint-plugin-import/pull/2071
|
||||
[#2034]: https://github.com/benmosher/eslint-plugin-import/pull/2034
|
||||
[#2026]: https://github.com/benmosher/eslint-plugin-import/pull/2026
|
||||
[#2022]: https://github.com/benmosher/eslint-plugin-import/pull/2022
|
||||
[#2021]: https://github.com/benmosher/eslint-plugin-import/pull/2021
|
||||
[#2012]: https://github.com/benmosher/eslint-plugin-import/pull/2012
|
||||
[#1997]: https://github.com/benmosher/eslint-plugin-import/pull/1997
|
||||
[#1993]: https://github.com/benmosher/eslint-plugin-import/pull/1993
|
||||
[#1990]: https://github.com/benmosher/eslint-plugin-import/pull/1990
|
||||
[#1985]: https://github.com/benmosher/eslint-plugin-import/pull/1985
|
||||
[#1983]: https://github.com/benmosher/eslint-plugin-import/pull/1983
|
||||
[#1974]: https://github.com/benmosher/eslint-plugin-import/pull/1974
|
||||
[#1958]: https://github.com/benmosher/eslint-plugin-import/pull/1958
|
||||
[#1948]: https://github.com/benmosher/eslint-plugin-import/pull/1948
|
||||
[#1947]: https://github.com/benmosher/eslint-plugin-import/pull/1947
|
||||
[#1944]: https://github.com/benmosher/eslint-plugin-import/pull/1944
|
||||
[#1940]: https://github.com/benmosher/eslint-plugin-import/pull/1940
|
||||
[#1897]: https://github.com/benmosher/eslint-plugin-import/pull/1897
|
||||
[#1889]: https://github.com/benmosher/eslint-plugin-import/pull/1889
|
||||
[#1878]: https://github.com/benmosher/eslint-plugin-import/pull/1878
|
||||
[#1860]: https://github.com/benmosher/eslint-plugin-import/pull/1860
|
||||
[#1848]: https://github.com/benmosher/eslint-plugin-import/pull/1848
|
||||
[#1846]: https://github.com/benmosher/eslint-plugin-import/pull/1846
|
||||
[#1836]: https://github.com/benmosher/eslint-plugin-import/pull/1836
|
||||
[#1835]: https://github.com/benmosher/eslint-plugin-import/pull/1835
|
||||
[#1834]: https://github.com/benmosher/eslint-plugin-import/issues/1834
|
||||
[#1833]: https://github.com/benmosher/eslint-plugin-import/pull/1833
|
||||
[#1831]: https://github.com/benmosher/eslint-plugin-import/pull/1831
|
||||
[#1830]: https://github.com/benmosher/eslint-plugin-import/pull/1830
|
||||
|
|
@ -734,7 +840,6 @@ for info on changes for earlier releases.
|
|||
[#1820]: https://github.com/benmosher/eslint-plugin-import/pull/1820
|
||||
[#1819]: https://github.com/benmosher/eslint-plugin-import/pull/1819
|
||||
[#1802]: https://github.com/benmosher/eslint-plugin-import/pull/1802
|
||||
[#1801]: https://github.com/benmosher/eslint-plugin-import/issues/1801
|
||||
[#1788]: https://github.com/benmosher/eslint-plugin-import/pull/1788
|
||||
[#1786]: https://github.com/benmosher/eslint-plugin-import/pull/1786
|
||||
[#1785]: https://github.com/benmosher/eslint-plugin-import/pull/1785
|
||||
|
|
@ -748,9 +853,8 @@ for info on changes for earlier releases.
|
|||
[#1735]: https://github.com/benmosher/eslint-plugin-import/pull/1735
|
||||
[#1726]: https://github.com/benmosher/eslint-plugin-import/pull/1726
|
||||
[#1724]: https://github.com/benmosher/eslint-plugin-import/pull/1724
|
||||
[#1722]: https://github.com/benmosher/eslint-plugin-import/issues/1722
|
||||
[#1719]: https://github.com/benmosher/eslint-plugin-import/pull/1719
|
||||
[#1702]: https://github.com/benmosher/eslint-plugin-import/issues/1702
|
||||
[#1696]: https://github.com/benmosher/eslint-plugin-import/pull/1696
|
||||
[#1691]: https://github.com/benmosher/eslint-plugin-import/pull/1691
|
||||
[#1690]: https://github.com/benmosher/eslint-plugin-import/pull/1690
|
||||
[#1689]: https://github.com/benmosher/eslint-plugin-import/pull/1689
|
||||
|
|
@ -760,17 +864,12 @@ for info on changes for earlier releases.
|
|||
[#1664]: https://github.com/benmosher/eslint-plugin-import/pull/1664
|
||||
[#1658]: https://github.com/benmosher/eslint-plugin-import/pull/1658
|
||||
[#1651]: https://github.com/benmosher/eslint-plugin-import/pull/1651
|
||||
[#1635]: https://github.com/benmosher/eslint-plugin-import/issues/1635
|
||||
[#1631]: https://github.com/benmosher/eslint-plugin-import/issues/1631
|
||||
[#1625]: https://github.com/benmosher/eslint-plugin-import/pull/1625
|
||||
[#1626]: https://github.com/benmosher/eslint-plugin-import/pull/1626
|
||||
[#1620]: https://github.com/benmosher/eslint-plugin-import/pull/1620
|
||||
[#1619]: https://github.com/benmosher/eslint-plugin-import/pull/1619
|
||||
[#1616]: https://github.com/benmosher/eslint-plugin-import/issues/1616
|
||||
[#1613]: https://github.com/benmosher/eslint-plugin-import/issues/1613
|
||||
[#1612]: https://github.com/benmosher/eslint-plugin-import/pull/1612
|
||||
[#1611]: https://github.com/benmosher/eslint-plugin-import/pull/1611
|
||||
[#1605]: https://github.com/benmosher/eslint-plugin-import/pull/1605
|
||||
[#1589]: https://github.com/benmosher/eslint-plugin-import/issues/1589
|
||||
[#1586]: https://github.com/benmosher/eslint-plugin-import/pull/1586
|
||||
[#1572]: https://github.com/benmosher/eslint-plugin-import/pull/1572
|
||||
[#1569]: https://github.com/benmosher/eslint-plugin-import/pull/1569
|
||||
|
|
@ -778,6 +877,7 @@ for info on changes for earlier releases.
|
|||
[#1560]: https://github.com/benmosher/eslint-plugin-import/pull/1560
|
||||
[#1551]: https://github.com/benmosher/eslint-plugin-import/pull/1551
|
||||
[#1542]: https://github.com/benmosher/eslint-plugin-import/pull/1542
|
||||
[#1534]: https://github.com/benmosher/eslint-plugin-import/pull/1534
|
||||
[#1528]: https://github.com/benmosher/eslint-plugin-import/pull/1528
|
||||
[#1526]: https://github.com/benmosher/eslint-plugin-import/pull/1526
|
||||
[#1521]: https://github.com/benmosher/eslint-plugin-import/pull/1521
|
||||
|
|
@ -788,6 +888,7 @@ for info on changes for earlier releases.
|
|||
[#1495]: https://github.com/benmosher/eslint-plugin-import/pull/1495
|
||||
[#1494]: https://github.com/benmosher/eslint-plugin-import/pull/1494
|
||||
[#1493]: https://github.com/benmosher/eslint-plugin-import/pull/1493
|
||||
[#1491]: https://github.com/benmosher/eslint-plugin-import/pull/1491
|
||||
[#1472]: https://github.com/benmosher/eslint-plugin-import/pull/1472
|
||||
[#1470]: https://github.com/benmosher/eslint-plugin-import/pull/1470
|
||||
[#1447]: https://github.com/benmosher/eslint-plugin-import/pull/1447
|
||||
|
|
@ -835,6 +936,7 @@ for info on changes for earlier releases.
|
|||
[#1253]: https://github.com/benmosher/eslint-plugin-import/pull/1253
|
||||
[#1248]: https://github.com/benmosher/eslint-plugin-import/pull/1248
|
||||
[#1238]: https://github.com/benmosher/eslint-plugin-import/pull/1238
|
||||
[#1237]: https://github.com/benmosher/eslint-plugin-import/pull/1237
|
||||
[#1235]: https://github.com/benmosher/eslint-plugin-import/pull/1235
|
||||
[#1234]: https://github.com/benmosher/eslint-plugin-import/pull/1234
|
||||
[#1232]: https://github.com/benmosher/eslint-plugin-import/pull/1232
|
||||
|
|
@ -859,6 +961,7 @@ for info on changes for earlier releases.
|
|||
[#1068]: https://github.com/benmosher/eslint-plugin-import/pull/1068
|
||||
[#1049]: https://github.com/benmosher/eslint-plugin-import/pull/1049
|
||||
[#1046]: https://github.com/benmosher/eslint-plugin-import/pull/1046
|
||||
[#966]: https://github.com/benmosher/eslint-plugin-import/pull/966
|
||||
[#944]: https://github.com/benmosher/eslint-plugin-import/pull/944
|
||||
[#912]: https://github.com/benmosher/eslint-plugin-import/pull/912
|
||||
[#908]: https://github.com/benmosher/eslint-plugin-import/pull/908
|
||||
|
|
@ -868,6 +971,7 @@ for info on changes for earlier releases.
|
|||
[#871]: https://github.com/benmosher/eslint-plugin-import/pull/871
|
||||
[#858]: https://github.com/benmosher/eslint-plugin-import/pull/858
|
||||
[#843]: https://github.com/benmosher/eslint-plugin-import/pull/843
|
||||
[#804]: https://github.com/benmosher/eslint-plugin-import/pull/804
|
||||
[#797]: https://github.com/benmosher/eslint-plugin-import/pull/797
|
||||
[#794]: https://github.com/benmosher/eslint-plugin-import/pull/794
|
||||
[#744]: https://github.com/benmosher/eslint-plugin-import/pull/744
|
||||
|
|
@ -935,10 +1039,27 @@ for info on changes for earlier releases.
|
|||
[#211]: https://github.com/benmosher/eslint-plugin-import/pull/211
|
||||
[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
|
||||
[#157]: https://github.com/benmosher/eslint-plugin-import/pull/157
|
||||
[#2067]: https://github.com/benmosher/eslint-plugin-import/issues/2067
|
||||
[#2056]: https://github.com/benmosher/eslint-plugin-import/issues/2056
|
||||
[#2063]: https://github.com/benmosher/eslint-plugin-import/issues/2063
|
||||
[#1965]: https://github.com/benmosher/eslint-plugin-import/issues/1965
|
||||
[#1924]: https://github.com/benmosher/eslint-plugin-import/issues/1924
|
||||
[#1854]: https://github.com/benmosher/eslint-plugin-import/issues/1854
|
||||
[#1841]: https://github.com/benmosher/eslint-plugin-import/issues/1841
|
||||
[#1834]: https://github.com/benmosher/eslint-plugin-import/issues/1834
|
||||
[#1814]: https://github.com/benmosher/eslint-plugin-import/issues/1814
|
||||
[#1811]: https://github.com/benmosher/eslint-plugin-import/issues/1811
|
||||
[#1808]: https://github.com/benmosher/eslint-plugin-import/issues/1808
|
||||
[#1805]: https://github.com/benmosher/eslint-plugin-import/issues/1805
|
||||
[#1801]: https://github.com/benmosher/eslint-plugin-import/issues/1801
|
||||
[#1722]: https://github.com/benmosher/eslint-plugin-import/issues/1722
|
||||
[#1704]: https://github.com/benmosher/eslint-plugin-import/issues/1704
|
||||
[#1702]: https://github.com/benmosher/eslint-plugin-import/issues/1702
|
||||
[#1635]: https://github.com/benmosher/eslint-plugin-import/issues/1635
|
||||
[#1631]: https://github.com/benmosher/eslint-plugin-import/issues/1631
|
||||
[#1616]: https://github.com/benmosher/eslint-plugin-import/issues/1616
|
||||
[#1613]: https://github.com/benmosher/eslint-plugin-import/issues/1613
|
||||
[#1589]: https://github.com/benmosher/eslint-plugin-import/issues/1589
|
||||
[#1565]: https://github.com/benmosher/eslint-plugin-import/issues/1565
|
||||
[#1366]: https://github.com/benmosher/eslint-plugin-import/issues/1366
|
||||
[#1334]: https://github.com/benmosher/eslint-plugin-import/issues/1334
|
||||
|
|
@ -1024,7 +1145,13 @@ for info on changes for earlier releases.
|
|||
[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
|
||||
[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89
|
||||
|
||||
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.0...HEAD
|
||||
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.4...HEAD
|
||||
[2.23.4]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.3...v2.23.4
|
||||
[2.23.3]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.2...v2.23.3
|
||||
[2.23.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.1...v2.23.2
|
||||
[2.23.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.0...v2.23.1
|
||||
[2.23.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.1...v2.23.0
|
||||
[2.22.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.0...v2.22.1
|
||||
[2.22.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.22.0
|
||||
[2.21.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.21.2
|
||||
[2.21.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.0...v2.21.1
|
||||
|
|
@ -1096,163 +1223,193 @@ for info on changes for earlier releases.
|
|||
[0.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.11.0...v0.12.0
|
||||
[0.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.10.1...v0.11.0
|
||||
|
||||
[@mathieudutour]: https://github.com/mathieudutour
|
||||
[@gausie]: https://github.com/gausie
|
||||
[@singles]: https://github.com/singles
|
||||
[@jfmengels]: https://github.com/jfmengels
|
||||
[@lo1tuma]: https://github.com/lo1tuma
|
||||
[@dmnd]: https://github.com/dmnd
|
||||
[@lemonmade]: https://github.com/lemonmade
|
||||
[@jimbolla]: https://github.com/jimbolla
|
||||
[@jquense]: https://github.com/jquense
|
||||
[@jonboiser]: https://github.com/jonboiser
|
||||
[@taion]: https://github.com/taion
|
||||
[@strawbrary]: https://github.com/strawbrary
|
||||
[@SimenB]: https://github.com/SimenB
|
||||
[@josh]: https://github.com/josh
|
||||
[@borisyankov]: https://github.com/borisyankov
|
||||
[@gavriguy]: https://github.com/gavriguy
|
||||
[@jkimbo]: https://github.com/jkimbo
|
||||
[@le0nik]: https://github.com/le0nik
|
||||
[@scottnonnenberg]: https://github.com/scottnonnenberg
|
||||
[@sindresorhus]: https://github.com/sindresorhus
|
||||
[@ljharb]: https://github.com/ljharb
|
||||
[@rhettlivingston]: https://github.com/rhettlivingston
|
||||
[@zloirock]: https://github.com/zloirock
|
||||
[@rhys-vdw]: https://github.com/rhys-vdw
|
||||
[@wKich]: https://github.com/wKich
|
||||
[@tizmagik]: https://github.com/tizmagik
|
||||
[@knpwrs]: https://github.com/knpwrs
|
||||
[@spalger]: https://github.com/spalger
|
||||
[@preco21]: https://github.com/preco21
|
||||
[@skyrpex]: https://github.com/skyrpex
|
||||
[@fson]: https://github.com/fson
|
||||
[@ntdb]: https://github.com/ntdb
|
||||
[@jakubsta]: https://github.com/jakubsta
|
||||
[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
|
||||
[@duncanbeevers]: https://github.com/duncanbeevers
|
||||
[@giodamelio]: https://github.com/giodamelio
|
||||
[@ntdb]: https://github.com/ntdb
|
||||
[@ramasilveyra]: https://github.com/ramasilveyra
|
||||
[@sompylasar]: https://github.com/sompylasar
|
||||
[@kevin940726]: https://github.com/kevin940726
|
||||
[@eelyafi]: https://github.com/eelyafi
|
||||
[@mastilver]: https://github.com/mastilver
|
||||
[@jseminck]: https://github.com/jseminck
|
||||
[@laysent]: https://github.com/laysent
|
||||
[@k15a]: https://github.com/k15a
|
||||
[@mplewis]: https://github.com/mplewis
|
||||
[@rosswarren]: https://github.com/rosswarren
|
||||
[@alexgorbatchev]: https://github.com/alexgorbatchev
|
||||
[@tihonove]: https://github.com/tihonove
|
||||
[@robertrossmann]: https://github.com/robertrossmann
|
||||
[@isiahmeadows]: https://github.com/isiahmeadows
|
||||
[@graingert]: https://github.com/graingert
|
||||
[@danny-andrews]: https://github.com/dany-andrews
|
||||
[@fengkfengk]: https://github.com/fengkfengk
|
||||
[@futpib]: https://github.com/futpib
|
||||
[@klimashkin]: https://github.com/klimashkin
|
||||
[@lukeapage]: https://github.com/lukeapage
|
||||
[@manovotny]: https://github.com/manovotny
|
||||
[@mattijsbliek]: https://github.com/mattijsbliek
|
||||
[@hulkish]: https://github.com/hulkish
|
||||
[@chrislloyd]: https://github.com/chrislloyd
|
||||
[@ai]: https://github.com/ai
|
||||
[@syymza]: https://github.com/syymza
|
||||
[@justinanastos]: https://github.com/justinanastos
|
||||
[@1pete]: https://github.com/1pete
|
||||
[@gajus]: https://github.com/gajus
|
||||
[@jf248]: https://github.com/jf248
|
||||
[@aravindet]: https://github.com/aravindet
|
||||
[@pzhine]: https://github.com/pzhine
|
||||
[@st-sloth]: https://github.com/st-sloth
|
||||
[@ljqx]: https://github.com/ljqx
|
||||
[@kirill-konshin]: https://github.com/kirill-konshin
|
||||
[@asapach]: https://github.com/asapach
|
||||
[@sergei-startsev]: https://github.com/sergei-startsev
|
||||
[@ephys]: https://github.com/ephys
|
||||
[@lydell]: https://github.com/lydell
|
||||
[@jeffshaver]: https://github.com/jeffshaver
|
||||
[@timkraut]: https://github.com/timkraut
|
||||
[@TakeScoop]: https://github.com/TakeScoop
|
||||
[@rfermann]: https://github.com/rfermann
|
||||
[@bradennapier]: https://github.com/bradennapier
|
||||
[@schmod]: https://github.com/schmod
|
||||
[@echenley]: https://github.com/echenley
|
||||
[@vikr01]: https://github.com/vikr01
|
||||
[@bradzacher]: https://github.com/bradzacher
|
||||
[@feychenie]: https://github.com/feychenie
|
||||
[@kiwka]: https://github.com/kiwka
|
||||
[@loganfsmyth]: https://github.com/loganfsmyth
|
||||
[@johndevedu]: https://github.com/johndevedu
|
||||
[@charlessuh]: https://github.com/charlessuh
|
||||
[@kgregory]: https://github.com/kgregory
|
||||
[@christophercurrie]: https://github.com/christophercurrie
|
||||
[@alex-page]: https://github.com/alex-page
|
||||
[@benmosher]: https://github.com/benmosher
|
||||
[@fooloomanzoo]: https://github.com/fooloomanzoo
|
||||
[@sheepsteak]: https://github.com/sheepsteak
|
||||
[@sharmilajesupaul]: https://github.com/sharmilajesupaul
|
||||
[@lencioni]: https://github.com/lencioni
|
||||
[@JounQin]: https://github.com/JounQin
|
||||
[@atikenny]: https://github.com/atikenny
|
||||
[@schmidsi]: https://github.com/schmidsi
|
||||
[@TrevorBurnham]: https://github.com/TrevorBurnham
|
||||
[@benmunro]: https://github.com/benmunro
|
||||
[@tihonove]: https://github.com/tihonove
|
||||
[@brendo]: https://github.com/brendo
|
||||
[@saschanaz]: https://github.com/saschanaz
|
||||
[@brettz9]: https://github.com/brettz9
|
||||
[@Taranys]: https://github.com/Taranys
|
||||
[@maxmalov]: https://github.com/maxmalov
|
||||
[@marcusdarmstrong]: https://github.com/marcusdarmstrong
|
||||
[@Mairu]: https://github.com/Mairu
|
||||
[@3nuc]: https://github.com/3nuc
|
||||
[@aamulumi]: https://github.com/aamulumi
|
||||
[@pcorpet]: https://github.com/pcorpet
|
||||
[@stropho]: https://github.com/stropho
|
||||
[@luczsoma]: https://github.com/luczsoma
|
||||
[@christophercurrie]: https://github.com/christophercurrie
|
||||
[@randallreedjr]: https://github.com/randallreedjr
|
||||
[@Pessimistress]: https://github.com/Pessimistress
|
||||
[@stekycz]: https://github.com/stekycz
|
||||
[@dbrewer5]: https://github.com/dbrewer5
|
||||
[@rsolomon]: https://github.com/rsolomon
|
||||
[@joaovieira]: https://github.com/joaovieira
|
||||
[@ivo-stefchev]: https://github.com/ivo-stefchev
|
||||
[@skozin]: https://github.com/skozin
|
||||
[@yordis]: https://github.com/yordis
|
||||
[@sveyret]: https://github.com/sveyret
|
||||
[@bmish]: https://github.com/bmish
|
||||
[@redbugz]: https://github.com/redbugz
|
||||
[@kentcdodds]: https://github.com/kentcdodds
|
||||
[@IvanGoncharov]: https://github.com/IvanGoncharov
|
||||
[@wschurman]: https://github.com/wschurman
|
||||
[@fisker]: https://github.com/fisker
|
||||
[@richardxia]: https://github.com/richardxia
|
||||
[@TheCrueltySage]: https://github.com/TheCrueltySage
|
||||
[@ernestostifano]: https://github.com/ernestostifano
|
||||
[@forivall]: https://github.com/forivall
|
||||
[@xpl]: https://github.com/xpl
|
||||
[@astorije]: https://github.com/astorije
|
||||
[@Ephem]: https://github.com/Ephem
|
||||
[@kmui2]: https://github.com/kmui2
|
||||
[@arvigeus]: https://github.com/arvigeus
|
||||
[@atos1990]: https://github.com/atos1990
|
||||
[@Hypnosphi]: https://github.com/Hypnosphi
|
||||
[@nickofthyme]: https://github.com/nickofthyme
|
||||
[@manuth]: https://github.com/manuth
|
||||
[@julien1619]: https://github.com/julien1619
|
||||
[@darkartur]: https://github.com/darkartur
|
||||
[@MikeyBeLike]: https://github.com/MikeyBeLike
|
||||
[@barbogast]: https://github.com/barbogast
|
||||
[@adamborowski]: https://github.com/adamborowski
|
||||
[@adjerbetian]: https://github.com/adjerbetian
|
||||
[@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
|
||||
[@malykhinvi]: https://github.com/malykhinvi
|
||||
[@nicolashenry]: https://github.com/nicolashenry
|
||||
[@fernandopasik]: https://github.com/fernandopasik
|
||||
[@taye]: https://github.com/taye
|
||||
[@ai]: https://github.com/ai
|
||||
[@aladdin-add]: https://github.com/aladdin-add
|
||||
[@alex-page]: https://github.com/alex-page
|
||||
[@alexgorbatchev]: https://github.com/alexgorbatchev
|
||||
[@andreubotella]: https://github.com/andreubotella
|
||||
[@AndrewLeedham]: https://github.com/AndrewLeedham
|
||||
[@aravindet]: https://github.com/aravindet
|
||||
[@arvigeus]: https://github.com/arvigeus
|
||||
[@asapach]: https://github.com/asapach
|
||||
[@astorije]: https://github.com/astorije
|
||||
[@atikenny]: https://github.com/atikenny
|
||||
[@atos1990]: https://github.com/atos1990
|
||||
[@barbogast]: https://github.com/barbogast
|
||||
[@be5invis]: https://github.com/be5invis
|
||||
[@noelebrun]: https://github.com/noelebrun
|
||||
[@beatrizrezener]: https://github.com/beatrizrezener
|
||||
[@benmosher]: https://github.com/benmosher
|
||||
[@benmunro]: https://github.com/benmunro
|
||||
[@bicstone]: https://github.com/bicstone
|
||||
[@Blasz]: https://github.com/Blasz
|
||||
[@bmish]: https://github.com/bmish
|
||||
[@borisyankov]: https://github.com/borisyankov
|
||||
[@bradennapier]: https://github.com/bradennapier
|
||||
[@bradzacher]: https://github.com/bradzacher
|
||||
[@brendo]: https://github.com/brendo
|
||||
[@brettz9]: https://github.com/brettz9
|
||||
[@charlessuh]: https://github.com/charlessuh
|
||||
[@cherryblossom000]: https://github.com/cherryblossom000
|
||||
[@chrislloyd]: https://github.com/chrislloyd
|
||||
[@christianvuerings]: https://github.com/christianvuerings
|
||||
[@christophercurrie]: https://github.com/christophercurrie
|
||||
[@danny-andrews]: https://github.com/dany-andrews
|
||||
[@darkartur]: https://github.com/darkartur
|
||||
[@davidbonnet]: https://github.com/davidbonnet
|
||||
[@dbrewer5]: https://github.com/dbrewer5
|
||||
[@devongovett]: https://github.com/devongovett
|
||||
[@dmnd]: https://github.com/dmnd
|
||||
[@duncanbeevers]: https://github.com/duncanbeevers
|
||||
[@dwardu]: https://github.com/dwardu
|
||||
[@echenley]: https://github.com/echenley
|
||||
[@edemaine]: https://github.com/edemaine
|
||||
[@eelyafi]: https://github.com/eelyafi
|
||||
[@Ephem]: https://github.com/Ephem
|
||||
[@ephys]: https://github.com/ephys
|
||||
[@eps1lon]: https://github.com/eps1lon
|
||||
[@ernestostifano]: https://github.com/ernestostifano
|
||||
[@fa93hws]: https://github.com/fa93hws
|
||||
[@fengkfengk]: https://github.com/fengkfengk
|
||||
[@fernandopasik]: https://github.com/fernandopasik
|
||||
[@feychenie]: https://github.com/feychenie
|
||||
[@fisker]: https://github.com/fisker
|
||||
[@FloEdelmann]: https://github.com/FloEdelmann
|
||||
[@fooloomanzoo]: https://github.com/fooloomanzoo
|
||||
[@foray1010]: https://github.com/foray1010
|
||||
[@forivall]: https://github.com/forivall
|
||||
[@fsmaia]: https://github.com/fsmaia
|
||||
[@fson]: https://github.com/fson
|
||||
[@futpib]: https://github.com/futpib
|
||||
[@gajus]: https://github.com/gajus
|
||||
[@gausie]: https://github.com/gausie
|
||||
[@gavriguy]: https://github.com/gavriguy
|
||||
[@giodamelio]: https://github.com/giodamelio
|
||||
[@golopot]: https://github.com/golopot
|
||||
[@graingert]: https://github.com/graingert
|
||||
[@grit96]: https://github.com/grit96
|
||||
[@guillaumewuip]: https://github.com/guillaumewuip
|
||||
[@hayes]: https://github.com/hayes
|
||||
[@hulkish]: https://github.com/hulkish
|
||||
[@Hypnosphi]: https://github.com/Hypnosphi
|
||||
[@isiahmeadows]: https://github.com/isiahmeadows
|
||||
[@IvanGoncharov]: https://github.com/IvanGoncharov
|
||||
[@ivo-stefchev]: https://github.com/ivo-stefchev
|
||||
[@jakubsta]: https://github.com/jakubsta
|
||||
[@jeffshaver]: https://github.com/jeffshaver
|
||||
[@jf248]: https://github.com/jf248
|
||||
[@jfmengels]: https://github.com/jfmengels
|
||||
[@jimbolla]: https://github.com/jimbolla
|
||||
[@jkimbo]: https://github.com/jkimbo
|
||||
[@joaovieira]: https://github.com/joaovieira
|
||||
[@johndevedu]: https://github.com/johndevedu
|
||||
[@jonboiser]: https://github.com/jonboiser
|
||||
[@josh]: https://github.com/josh
|
||||
[@JounQin]: https://github.com/JounQin
|
||||
[@jquense]: https://github.com/jquense
|
||||
[@jseminck]: https://github.com/jseminck
|
||||
[@julien1619]: https://github.com/julien1619
|
||||
[@justinanastos]: https://github.com/justinanastos
|
||||
[@k15a]: https://github.com/k15a
|
||||
[@kentcdodds]: https://github.com/kentcdodds
|
||||
[@kevin940726]: https://github.com/kevin940726
|
||||
[@kgregory]: https://github.com/kgregory
|
||||
[@kirill-konshin]: https://github.com/kirill-konshin
|
||||
[@kiwka]: https://github.com/kiwka
|
||||
[@klimashkin]: https://github.com/klimashkin
|
||||
[@kmui2]: https://github.com/kmui2
|
||||
[@knpwrs]: https://github.com/knpwrs
|
||||
[@laysent]: https://github.com/laysent
|
||||
[@le0nik]: https://github.com/le0nik
|
||||
[@lemonmade]: https://github.com/lemonmade
|
||||
[@lencioni]: https://github.com/lencioni
|
||||
[@leonardodino]: https://github.com/leonardodino
|
||||
[@Librazy]: https://github.com/Librazy
|
||||
[@lilling]: https://github.com/lilling
|
||||
[@ljharb]: https://github.com/ljharb
|
||||
[@ljqx]: https://github.com/ljqx
|
||||
[@lo1tuma]: https://github.com/lo1tuma
|
||||
[@loganfsmyth]: https://github.com/loganfsmyth
|
||||
[@luczsoma]: https://github.com/luczsoma
|
||||
[@lukeapage]: https://github.com/lukeapage
|
||||
[@lydell]: https://github.com/lydell
|
||||
[@Mairu]: https://github.com/Mairu
|
||||
[@malykhinvi]: https://github.com/malykhinvi
|
||||
[@manovotny]: https://github.com/manovotny
|
||||
[@manuth]: https://github.com/manuth
|
||||
[@marcusdarmstrong]: https://github.com/marcusdarmstrong
|
||||
[@mastilver]: https://github.com/mastilver
|
||||
[@mathieudutour]: https://github.com/mathieudutour
|
||||
[@MatthiasKunnen]: https://github.com/MatthiasKunnen
|
||||
[@mattijsbliek]: https://github.com/mattijsbliek
|
||||
[@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
|
||||
[@maxmalov]: https://github.com/maxmalov
|
||||
[@MikeyBeLike]: https://github.com/MikeyBeLike
|
||||
[@mplewis]: https://github.com/mplewis
|
||||
[@nickofthyme]: https://github.com/nickofthyme
|
||||
[@nicolashenry]: https://github.com/nicolashenry
|
||||
[@noelebrun]: https://github.com/noelebrun
|
||||
[@ntdb]: https://github.com/ntdb
|
||||
[@panrafal]: https://github.com/panrafal
|
||||
[@paztis]: https://github.com/paztis
|
||||
[@pcorpet]: https://github.com/pcorpet
|
||||
[@Pessimistress]: https://github.com/Pessimistress
|
||||
[@preco21]: https://github.com/preco21
|
||||
[@pzhine]: https://github.com/pzhine
|
||||
[@ramasilveyra]: https://github.com/ramasilveyra
|
||||
[@randallreedjr]: https://github.com/randallreedjr
|
||||
[@redbugz]: https://github.com/redbugz
|
||||
[@rfermann]: https://github.com/rfermann
|
||||
[@rhettlivingston]: https://github.com/rhettlivingston
|
||||
[@rhys-vdw]: https://github.com/rhys-vdw
|
||||
[@richardxia]: https://github.com/richardxia
|
||||
[@robertrossmann]: https://github.com/robertrossmann
|
||||
[@rosswarren]: https://github.com/rosswarren
|
||||
[@rsolomon]: https://github.com/rsolomon
|
||||
[@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
|
||||
[@saschanaz]: https://github.com/saschanaz
|
||||
[@schmidsi]: https://github.com/schmidsi
|
||||
[@schmod]: https://github.com/schmod
|
||||
[@scottnonnenberg]: https://github.com/scottnonnenberg
|
||||
[@sergei-startsev]: https://github.com/sergei-startsev
|
||||
[@sharmilajesupaul]: https://github.com/sharmilajesupaul
|
||||
[@sheepsteak]: https://github.com/sheepsteak
|
||||
[@silviogutierrez]: https://github.com/silviogutierrez
|
||||
[@SimenB]: https://github.com/SimenB
|
||||
[@sindresorhus]: https://github.com/sindresorhus
|
||||
[@singles]: https://github.com/singles
|
||||
[@skozin]: https://github.com/skozin
|
||||
[@skyrpex]: https://github.com/skyrpex
|
||||
[@sompylasar]: https://github.com/sompylasar
|
||||
[@spalger]: https://github.com/spalger
|
||||
[@st-sloth]: https://github.com/st-sloth
|
||||
[@stekycz]: https://github.com/stekycz
|
||||
[@straub]: https://github.com/straub
|
||||
[@strawbrary]: https://github.com/strawbrary
|
||||
[@stropho]: https://github.com/stropho
|
||||
[@sveyret]: https://github.com/sveyret
|
||||
[@swernerx]: https://github.com/swernerx
|
||||
[@syymza]: https://github.com/syymza
|
||||
[@taion]: https://github.com/taion
|
||||
[@TakeScoop]: https://github.com/TakeScoop
|
||||
[@tapayne88]: https://github.com/tapayne88
|
||||
[@Taranys]: https://github.com/Taranys
|
||||
[@taye]: https://github.com/taye
|
||||
[@TheCrueltySage]: https://github.com/TheCrueltySage
|
||||
[@tihonove]: https://github.com/tihonove
|
||||
[@timkraut]: https://github.com/timkraut
|
||||
[@tizmagik]: https://github.com/tizmagik
|
||||
[@tomprats]: https://github.com/tomprats
|
||||
[@TrevorBurnham]: https://github.com/TrevorBurnham
|
||||
[@ttmarek]: https://github.com/ttmarek
|
||||
[@vikr01]: https://github.com/vikr01
|
||||
[@wKich]: https://github.com/wKich
|
||||
[@wschurman]: https://github.com/wschurman
|
||||
[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
|
||||
[@xpl]: https://github.com/xpl
|
||||
[@yordis]: https://github.com/yordis
|
||||
[@zloirock]: https://github.com/zloirock
|
||||
Loading…
Add table
Add a link
Reference in a new issue