UNPKG

77.4 kBMarkdownView Raw
1# Change Log
2
3All notable changes to this project will be documented in this file.
4This project adheres to [Semantic Versioning](http://semver.org/).
5This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
6
7## [Unreleased]
8
9## [2.23.0] - 2021-05-14
10
11### Fixed
12- [`newline-after-import`]: fix crash with `export {}` syntax ([#2063], [#2056], thanks [@ljharb])
13- `ExportMap`: do not crash when tsconfig lacks `.compilerOptions` ([#2067], thanks [@ljharb])
14- [`order`]: fix alphabetical sorting ([#2071], thanks [@grit96])
15
16## [2.23.0] - 2021-05-13
17
18### Added
19- [`no-commonjs`]: Also detect require calls with expressionless template literals: ``` require(`x`) ``` ([#1958], thanks [@FloEdelmann])
20- [`no-internal-modules`]: Add `forbid` option ([#1846], thanks [@guillaumewuip])
21- add [`no-relative-packages`] ([#1860], [#966], thanks [@tapayne88] [@panrafal])
22- add [`no-import-module-exports`] rule: report import declarations with CommonJS exports ([#804], thanks [@kentcdodds] and [@ttmarek])
23- [`no-unused-modules`]: Support destructuring assignment for `export`. ([#1997], thanks [@s-h-a-d-o-w])
24- [`order`]: support type imports ([#2021], thanks [@grit96])
25- [`order`]: Add `warnOnUnassignedImports` option to enable warnings for out of order unassigned imports ([#1990], thanks [@hayes])
26
27### Fixed
28- [`export`]/TypeScript: properly detect export specifiers as children of a TS module block ([#1889], thanks [@andreubotella])
29- [`order`]: ignore non-module-level requires ([#1940], thanks [@golopot])
30- [`no-webpack-loader-syntax`]/TypeScript: avoid crash on missing name ([#1947], thanks [@leonardodino])
31- [`no-extraneous-dependencies`]: Add package.json cache ([#1948], thanks [@fa93hws])
32- [`prefer-default-export`]: handle empty array destructuring ([#1965], thanks [@ljharb])
33- [`no-unused-modules`]: make type imports mark a module as used (fixes #1924) ([#1974], thanks [@cherryblossom000])
34- [`no-cycle`]: fix perf regression ([#1944], thanks [@Blasz])
35- [`first`]: fix handling of `import = require` ([#1963], thanks [@MatthiasKunnen])
36- [`no-cycle`]/[`extensions`]: fix isExternalModule usage ([#1696], thanks [@paztis])
37- [`extensions`]/[`no-cycle`]/[`no-extraneous-dependencies`]: Correct module real path resolution ([#1696], thanks [@paztis])
38- [`no-named-default`]: ignore Flow import type and typeof ([#1983], thanks [@christianvuerings])
39- [`no-extraneous-dependencies`]: Exclude flow `typeof` imports ([#1534], thanks [@devongovett])
40- [`newline-after-import`]: respect decorator annotations ([#1985], thanks [@lilling])
41- [`no-restricted-paths`]: enhance performance for zones with `except` paths ([#2022], thanks [@malykhinvi])
42- [`no-unresolved`]: check import() ([#2026], thanks [@aladdin-add])
43
44### Changed
45- [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
46- [Docs] [`no-named-as-default`]: add semicolon ([#1897], thanks [@bicstone])
47- [Docs] `no-extraneous-dependencies`: correct peerDependencies option default to `true` ([#1993], thanks [@dwardu])
48- [Docs] `order`: Document options required to match ordering example ([#1992], thanks [@silviogutierrez])
49- [Tests] `no-unresolved`: add tests for `import()` ([#2012], thanks [@davidbonnet])
50- [Docs] Add import/recommended ruleset to README ([#2034], thanks [@edemaine])
51
52## [2.22.1] - 2020-09-27
53### Fixed
54- [`default`]/TypeScript: avoid crash on `export =` with a MemberExpression ([#1841], thanks [@ljharb])
55- [`extensions`]/importType: Fix @/abc being treated as scoped module ([#1854], thanks [@3nuc])
56- allow using rest operator in named export ([#1878], thanks [@foray1010])
57- [`dynamic-import-chunkname`]: allow single quotes to match Webpack support ([#1848], thanks [@straub])
58
59### Changed
60- [`export`]: add tests for a name collision with `export * from` ([#1704], thanks @tomprats)
61
62## [2.22.0] - 2020-06-26
63### Added
64- [`no-unused-modules`]: consider exported TypeScript interfaces, types and enums ([#1819], thanks [@nicolashenry])
65- [`no-cycle`]: allow `maxDepth` option to be `"∞"` (thanks [@ljharb])
66
67### Fixed
68- [`order`]/TypeScript: properly support `import = object` expressions ([#1823], thanks [@manuth])
69- [`no-extraneous-dependencies`]/TypeScript: do not error when importing type from dev dependencies ([#1820], thanks [@fernandopasik])
70- [`default`]: avoid crash with `export =` ([#1822], thanks [@AndrewLeedham])
71- [`order`]/[`newline-after-import`]: ignore TypeScript's "export import object" ([#1830], thanks [@be5invis])
72- [`dynamic-import-chunkname`]/TypeScript: supports `@typescript-eslint/parser` ([#1833], thanks [@noelebrun])
73- [`order`]/TypeScript: ignore ordering of object imports ([#1831], thanks [@manuth])
74- [`namespace`]: do not report on shadowed import names ([#518], thanks [@ljharb])
75- [`export`]: avoid warning on `export * as` non-conflicts ([#1834], thanks [@ljharb])
76
77### Changed
78- [`no-extraneous-dependencies`]: add tests for importing types ([#1824], thanks [@taye])
79- [docs] [`no-default-export`]: Fix docs url ([#1836], thanks [@beatrizrezener])
80- [docs] [`imports-first`]: deprecation info and link to `first` docs ([#1835], thanks [@beatrizrezener])
81
82## [2.21.2] - 2020-06-09
83### Fixed
84- [`order`]: avoid a crash on TypeScript’s `export import` syntax ([#1808], thanks [@ljharb])
85- [`newline-after-import`]: consider TypeScript `import =` syntax' ([#1811], thanks [@ljharb])
86- [`no-internal-modules`]: avoid a crash on a named export declaration ([#1814], thanks [@ljharb])
87
88## [2.21.1] - 2020-06-07
89### Fixed
90- TypeScript: [`import/named`]: avoid requiring `typescript` when not using TS ([#1805], thanks [@ljharb])
91
92## [2.21.0] - 2020-06-07
93### Added
94- [`import/default`]: support default export in TSExportAssignment ([#1528], thanks [@joaovieira])
95- [`no-cycle`]: add `ignoreExternal` option ([#1681], thanks [@sveyret])
96- [`order`]: Add support for TypeScript's "import equals"-expressions ([#1785], thanks [@manuth])
97- [`import/default`]: support default export in TSExportAssignment ([#1689], thanks [@Maxim-Mazurok])
98- [`no-restricted-paths`]: add custom message support ([#1802], thanks [@malykhinvi])
99
100### Fixed
101- [`group-exports`]: Flow type export awareness ([#1702], thanks [@ernestostifano])
102- [`order`]: Recognize pathGroup config for first group ([#1719], [#1724], thanks [@forivall], [@xpl])
103- [`no-unused-modules`]: Fix re-export not counting as usage when used in combination with import ([#1722], thanks [@Ephem])
104- [`no-duplicates`]: Handle TS import type ([#1676], thanks [@kmui2])
105- [`newline-after-import`]: recognize decorators ([#1139], thanks [@atos1990])
106- [`no-unused-modules`]: Revert "[flow] [`no-unused-modules`]: add flow type support" ([#1770], thanks [@Hypnosphi])
107- TypeScript: Add nested namespace handling ([#1763], thanks [@julien1619])
108- [`namespace`]/`ExportMap`: Fix interface declarations for TypeScript ([#1764], thanks [@julien1619])
109- [`no-unused-modules`]: avoid order-dependence ([#1744], thanks [@darkartur])
110- [`no-internal-modules`]: also check `export from` syntax ([#1691], thanks [@adjerbetian])
111- TypeScript: [`export`]: avoid a crash with `export =` ([#1801], thanks [@ljharb])
112
113### Changed
114- [Refactor] `no-extraneous-dependencies`: use moduleVisitor ([#1735], thanks [@adamborowski])
115- TypeScript config: Disable [`named`][] ([#1726], thanks [@astorije])
116- [readme] Remove duplicate [`no-unused-modules`] from docs ([#1690], thanks [@arvigeus])
117- [Docs] `order`: fix bad inline config ([#1788], thanks [@nickofthyme])
118- [Tests] Add fix for Windows Subsystem for Linux ([#1786], thanks [@manuth])
119- [Docs] `no-unused-rules`: Fix docs for unused exports ([#1776], thanks [@barbogast])
120- [eslint] bump minimum v7 version to v7.2.0
121
122## [2.20.2] - 2020-03-28
123### Fixed
124- [`order`]: fix `isExternalModule` detect on windows ([#1651], thanks [@fisker])
125- [`order`]: recognize ".." as a "parent" path ([#1658], thanks [@golopot])
126- [`no-duplicates`]: fix fixer on cases with default import ([#1666], thanks [@golopot])
127- [`no-unused-modules`]: Handle `export { default } from` syntax ([#1631], thanks [@richardxia])
128- [`first`]: Add a way to disable `absolute-first` explicitly ([#1664], thanks [@TheCrueltySage])
129- [Docs] `no-webpack-loader-syntax`: Updates webpack URLs ([#1751], thanks [@MikeyBeLike])
130
131## [2.20.1] - 2020-02-01
132### Fixed
133- [`export`]: Handle function overloading in `*.d.ts` ([#1619], thanks [@IvanGoncharov])
134- [`no-absolute-path`]: fix a crash with invalid import syntax ([#1616], thanks [@ljharb])
135- [`import/external-module-folders` setting] now correctly works with directories containing modules symlinked from `node_modules` ([#1605], thanks [@skozin])
136- [`extensions`]: for invalid code where `name` does not exist, do not crash ([#1613], thanks [@ljharb])
137- [`extensions`]: Fix scope regex ([#1611], thanks [@yordis])
138- [`no-duplicates`]: allow duplicate imports if one is a namespace and the other not ([#1612], thanks [@sveyret])
139- Add some missing rule meta schemas and types ([#1620], thanks [@bmish])
140- [`named`]: for importing from a module which re-exports named exports from a `node_modules` module ([#1569], [#1447], thanks [@redbugz], [@kentcdodds])
141- [`order`]: Fix alphabetize for mixed requires and imports ([#1626], thanks [@wschurman])
142
143### Changed
144- [`import/external-module-folders` setting] behavior is more strict now: it will only match complete path segments ([#1605], thanks [@skozin])
145- [meta] fix "files" field to include/exclude the proper files ([#1635], thanks [@ljharb])
146- [Tests] `order`: Add TS import type tests ([#1736], thanks [@kmui2])
147
148## [2.20.0] - 2020-01-10
149### Added
150- [`order`]: added `caseInsensitive` as an additional option to `alphabetize` ([#1586], thanks [@dbrewer5])
151- [`no-restricted-paths`]: New `except` option per `zone`, allowing exceptions to be defined for a restricted zone ([#1238], thanks [@rsolomon])
152- [`order`]: add option pathGroupsExcludedImportTypes to allow ordering of external import types ([#1565], thanks [@Mairu])
153
154### Fixed
155- [`no-unused-modules`]: fix usage of `import/extensions` settings ([#1560], thanks [@stekycz])
156- [`extensions`]: ignore non-main modules ([#1563], thanks [@saschanaz])
157- TypeScript config: lookup for external modules in @types folder ([#1526], thanks [@joaovieira])
158- [`no-extraneous-dependencies`]: ensure `node.source` is truthy ([#1589], thanks [@ljharb])
159- [`extensions`]: Ignore query strings when checking for extensions ([#1572], thanks [@pcorpet])
160
161### Docs
162- [`extensions`]: improve `ignorePackages` docs ([#1248], thanks [@ivo-stefchev])
163
164## [2.19.1] - 2019-12-08
165### Fixed
166- [`no-extraneous-dependencies`]: ensure `node.source` exists
167
168## [2.19.0] - 2019-12-08
169### Added
170- [`internal-regex` setting]: regex pattern for marking packages "internal" ([#1491], thanks [@Librazy])
171- [`group-exports`]: make aggregate module exports valid ([#1472], thanks [@atikenny])
172- [`no-namespace`]: Make rule fixable ([#1401], thanks [@TrevorBurnham])
173- support `parseForESLint` from custom parser ([#1435], thanks [@JounQin])
174- [`no-extraneous-dependencies`]: Implement support for [bundledDependencies](https://npm.github.io/using-pkgs-docs/package-json/types/bundleddependencies.html) ([#1436], thanks [@schmidsi]))
175- [`no-unused-modules`]: add flow type support ([#1542], thanks [@rfermann])
176- [`order`]: Adds support for pathGroups to allow ordering by defined patterns ([#795], [#1386], thanks [@Mairu])
177- [`no-duplicates`]: Add `considerQueryString` option : allow duplicate imports with different query strings ([#1107], thanks [@pcorpet]).
178- [`order`]: Add support for alphabetical sorting of import paths within import groups ([#1360], [#1105], [#629], thanks [@duncanbeevers], [@stropho], [@luczsoma], [@randallreedjr])
179- [`no-commonjs`]: add `allowConditionalRequire` option ([#1439], thanks [@Pessimistress])
180
181### Fixed
182- [`default`]: make error message less confusing ([#1470], thanks [@golopot])
183- Improve performance of `ExportMap.for` by only loading paths when necessary. ([#1519], thanks [@brendo])
184- Support export of a merged TypeScript namespace declaration ([#1495], thanks [@benmunro])
185- [`order`]: fix autofix to not move imports across fn calls ([#1253], thanks [@tihonove])
186- [`prefer-default-export`]: fix false positive with type export ([#1506], thanks [@golopot])
187- [`extensions`]: Fix `ignorePackages` to produce errors ([#1521], thanks [@saschanaz])
188- [`no-unused-modules`]: fix crash due to `export *` ([#1496], thanks [@Taranys])
189- [`no-cycle`]: should not warn for Flow imports ([#1494], thanks [@maxmalov])
190- [`order`]: fix `@someModule` considered as `unknown` instead of `internal` ([#1493], thanks [@aamulumi])
191- [`no-extraneous-dependencies`]: Check `export from` ([#1049], thanks [@marcusdarmstrong])
192
193### Docs
194- [`no-useless-path-segments`]: add docs for option `commonjs` ([#1507], thanks [@golopot])
195
196### Changed
197- [`no-unused-modules`]/`eslint-module-utils`: Avoid superfluous calls and code ([#1551], thanks [@brettz9])
198
199## [2.18.2] - 2019-07-19
200### Fixed
201- Skip warning on type interfaces ([#1425], thanks [@lencioni])
202
203## [2.18.1] - 2019-07-18
204### Fixed
205- Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher])
206- [`prefer-default-export`]: don't warn on TypeAlias & TSTypeAliasDeclaration ([#1377], thanks [@sharmilajesupaul])
207- [`no-unused-modules`]: Exclude package "main"/"bin"/"browser" entry points ([#1404], thanks [@rfermann])
208- [`export`]: false positive for TypeScript overloads ([#1412], thanks [@golopot])
209
210### Refactors
211- [`no-extraneous-dependencies`], `importType`: remove lodash ([#1419], thanks [@ljharb])
212
213## [2.18.0] - 2019-06-24
214### Added
215- Support eslint v6 ([#1393], thanks [@sheepsteak])
216- [`order`]: Adds support for correctly sorting unknown types into a single group ([#1375], thanks [@swernerx])
217- [`order`]: add fixer for destructuring commonjs import ([#1372], thanks [@golopot])
218- TypeScript config: add TS def extensions + defer to TS over JS ([#1366], thanks [@benmosher])
219
220### Fixed
221- [`no-unused-modules`]: handle ClassDeclaration ([#1371], thanks [@golopot])
222
223### Docs
224- [`no-cycle`]: split code examples so file separation is obvious ([#1370], thanks [@alex-page])
225- [`no-named-as-default-member`]: update broken link ([#1389], thanks [@fooloomanzoo])
226
227## [2.17.3] - 2019-05-23
228### Fixed
229- [`no-common-js`]: Also throw an error when assigning ([#1354], thanks [@charlessuh])
230- [`no-unused-modules`]: don't crash when lint file outside src-folder ([#1347], thanks [@rfermann])
231- [`no-unused-modules`]: make `import { name as otherName }` work ([#1340], [#1342], thanks [@rfermann])
232- [`no-unused-modules`]: make appveyor tests passing ([#1333], thanks [@rfermann])
233- [`named`]: ignore Flow `typeof` imports and `type` exports ([#1345], thanks [@loganfsmyth])
234- [refactor] fix eslint 6 compat by fixing imports (thank [@ljharb])
235- Improve support for TypeScript declare structures ([#1356], thanks [@christophercurrie])
236
237### Docs
238- add missing `no-unused-modules` in README ([#1358], thanks [@golopot])
239- [`no-unused-modules`]: Indicates usage, plugin defaults to no-op, and add description to main README.md ([#1352], thanks [@johndevedu])
240- Document `env` option for `eslint-import-resolver-webpack` ([#1363], thanks [@kgregory])
241
242## [2.17.2] - 2019-04-16
243### Fixed
244- [`no-unused-modules`]: avoid crash when using `ignoreExports`-option ([#1331], [#1323], thanks [@rfermann])
245- [`no-unused-modules`]: make sure that rule with no options will not fail ([#1330], [#1334], thanks [@kiwka])
246
247## [2.17.1] - 2019-04-13
248### Fixed
249- require v2.4 of `eslint-module-utils` ([#1322])
250
251## [2.17.0] - 2019-04-13
252### Added
253- [`no-useless-path-segments`]: Add `noUselessIndex` option ([#1290], thanks [@timkraut])
254- [`no-duplicates`]: Add autofix ([#1312], thanks [@lydell])
255- Add [`no-unused-modules`] rule ([#1142], thanks [@rfermann])
256- support export type named exports from TypeScript ([#1304], thanks [@bradennapier] and [@schmod])
257
258### Fixed
259- [`order`]: Fix interpreting some external modules being interpreted as internal modules ([#793], [#794] thanks [@ephys])
260- allow aliases that start with @ to be "internal" ([#1293], [#1294], thanks [@jeffshaver])
261- aliased internal modules that look like core modules ([#1297], thanks [@echenley])
262- [`namespace`]: add check for null ExportMap ([#1235], [#1144], thanks [@ljqx])
263- [ExportMap] fix condition for checking if block comment ([#1234], [#1233], thanks [@ljqx])
264- Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-imports`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
265- [`export`]: false positives for TypeScript type + value export ([#1319], thanks [@bradzacher])
266- [`export`]: Support TypeScript namespaces ([#1320], [#1300], thanks [@bradzacher])
267
268### Docs
269- Update readme for TypeScript ([#1256], [#1277], thanks [@kirill-konshin])
270- make rule names consistent ([#1112], thanks [@feychenie])
271
272### Tests
273- fix broken tests on master ([#1295], thanks [@jeffshaver] and [@ljharb])
274- [`no-commonjs`]: add tests that show corner cases ([#1308], thanks [@TakeScoop])
275
276## [2.16.0] - 2019-01-29
277### Added
278- `typescript` config ([#1257], thanks [@kirill-konshin])
279
280### Fixed
281- Memory leak of `SourceCode` objects for all parsed dependencies, resolved. (issue [#1266], thanks [@asapach] and [@sergei-startsev] for digging in)
282
283## [2.15.0] - 2019-01-22
284### Added
285- new rule: [`no-named-export`] ([#1157], thanks [@fsmaia])
286
287### Fixed
288- [`no-extraneous-dependencies`]: `packageDir` option with array value was clobbering package deps instead of merging them ([#1175]/[#1176], thanks [@aravindet] & [@pzhine])
289- [`dynamic-import-chunkname`]: Add proper webpack comment parsing ([#1163], thanks [@st-sloth])
290- [`named`]: fix destructuring assignment ([#1232], thanks [@ljqx])
291
292## [2.14.0] - 2018-08-13
293### Added
294- [`no-useless-path-segments`]: add commonJS (CJS) support ([#1128], thanks [@1pete])
295- [`namespace`]: add JSX check ([#1151], thanks [@jf248])
296
297### Fixed
298- [`no-cycle`]: ignore Flow imports ([#1126], thanks [@gajus])
299- fix Flow type imports ([#1106], thanks [@syymza])
300- [`no-relative-parent-imports`]: resolve paths ([#1135], thanks [@chrislloyd])
301- [`order`]: fix autofixer when using typescript-eslint-parser ([#1137], thanks [@justinanastos])
302- repeat fix from [#797] for [#717], in another place (thanks [@ljharb])
303
304### Refactors
305- add explicit support for RestElement alongside ExperimentalRestProperty (thanks [@ljharb])
306
307## [2.13.0] - 2018-06-24
308### Added
309- Add ESLint 5 support ([#1122], thanks [@ai] and [@ljharb])
310- Add [`no-relative-parent-imports`] rule: disallow relative imports from parent directories ([#1093], thanks [@chrislloyd])
311
312### Fixed
313- `namespace` rule: ensure it works in eslint 5/ecmaVersion 2018 (thanks [@ljharb])
314
315## [2.12.0] - 2018-05-17
316### Added
317- Ignore type imports for [`named`] rule ([#931], thanks [@mattijsbliek])
318- Add documentation for [`no-useless-path-segments`] rule ([#1068], thanks [@manovotny])
319- `packageDir` option for [`no-extraneous-dependencies`] can be array-valued ([#1085], thanks [@hulkish])
320
321## [2.11.0] - 2018-04-09
322### Added
323- Fixer for [`first`] ([#1046], thanks [@fengkfengk])
324- `allow-require` option for [`no-commonjs`] rule ([#880], thanks [@futpib])
325
326### Fixed
327- memory/CPU regression where ASTs were held in memory ([#1058], thanks [@klimashkin]/[@lukeapage])
328
329## [2.10.0] - 2018-03-29
330### Added
331- Autofixer for [`order`] rule ([#908], thanks [@tihonove])
332- Add [`no-cycle`] rule: reports import cycles.
333
334## [2.9.0] - 2018-02-21
335### Added
336- Add [`group-exports`] rule: style-guide rule to report use of multiple named exports ([#721], thanks [@robertrossmann])
337- Add [`no-self-import`] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [@giodamelio]).
338- Add [`no-default-export`] rule ([#889], thanks [@isiahmeadows])
339- Add [`no-useless-path-segments`] rule ([#912], thanks [@graingert] and [@danny-andrews])
340- ... and more! check the commits for v[2.9.0]
341
342## [2.8.0] - 2017-10-18
343### Added
344- [`exports-last`] rule ([#620] + [#632], thanks [@k15a])
345
346### Changed
347- Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [@laysent])
348
349### Fixed
350- support scoped modules containing hyphens ([#744], thanks [@rosswarren])
351- core-modules now resolves files inside declared modules ([#886] / [#891], thanks [@mplewis])
352- TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [@alexgorbatchev])
353
354## [2.7.0] - 2017-07-06
355### Changed
356- [`no-absolute-path`] picks up speed boost, optional AMD support ([#843], thanks [@jseminck])
357
358## [2.6.1] - 2017-06-29
359### Fixed
360- update bundled node resolver dependency to latest version
361
362## [2.6.0] - 2017-06-23
363### Changed
364- update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [@mastilver])
365- [`memo-parser`] updated to require `filePath` on parser options as it melts
366 down if it's not there, now that this plugin always provides it. (see [#863])
367
368## [2.5.0] - 2017-06-22
369
370Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [`memo-parser`],
371which is more or less experimental anyway.
372
373### Added
374- Autofixer for newline-after-import. ([#686] + [#696], thanks [@eelyafi])
375
376## [2.4.0] - 2017-06-02 [YANKED]
377
378Yanked due to critical issue in eslint-module-utils with cache key resulting from [#839].
379
380### Added
381- Add `filePath` into `parserOptions` passed to `parser` ([#839], thanks [@sompylasar])
382- Add `allow` option to [`no-unassigned-import`] to allow for files that match the globs ([#671], [#737], thanks [@kevin940726]).
383
384## [2.3.0] - 2017-05-18
385### Added
386- [`no-anonymous-default-export`] rule: report anonymous default exports ([#712], thanks [@duncanbeevers]).
387- Add new value to [`order`]'s `newlines-between` option to allow newlines inside import groups ([#627], [#628], thanks [@giodamelio])
388- Add `count` option to the [`newline-after-import`] rule to allow configuration of number of newlines expected ([#742], thanks [@ntdb])
389
390### Changed
391- [`no-extraneous-dependencies`]: use `read-pkg-up` to simplify finding + loading `package.json` ([#680], thanks [@wtgtybhertgeghgtwtg])
392- Add support to specify the package.json [`no-extraneous-dependencies`] ([#685], thanks [@ramasilveyra])
393
394### Fixed
395- attempt to fix crash in [`no-mutable-exports`]. ([#660])
396- "default is a reserved keyword" in no-maned-default tests by locking down babylon to 6.15.0 (#756, thanks @gmathieu)
397- support scoped modules containing non word characters
398
399
400## [2.2.0] - 2016-11-07
401### Fixed
402- Corrected a few gaffs in the auto-ignore logic to fix major performance issues
403 with projects that did not explicitly ignore `node_modules`. ([#654])
404- [`import/ignore` setting] was only being respected if the ignored module didn't start with
405 an `import` or `export` JS statement
406- [`prefer-default-export`]: fixed crash on export extensions ([#653])
407
408## [2.1.0] - 2016-11-02
409### Added
410- Add [`no-named-default`] rule: style-guide rule to report use of unnecessarily named default imports ([#596], thanks [@ntdb])
411- [`no-extraneous-dependencies`]: check globs against CWD + absolute path ([#602] + [#630], thanks [@ljharb])
412
413### Fixed
414- [`prefer-default-export`] handles flow `export type` ([#484] + [#639], thanks [@jakubsta])
415- [`prefer-default-export`] handles re-exported default exports ([#609])
416- Fix crash when using [`newline-after-import`] with decorators ([#592])
417- Properly report [`newline-after-import`] when next line is a decorator
418- Fixed documentation for the default values for the [`order`] rule ([#601])
419
420## [2.0.1] - 2016-10-06
421### Fixed
422- Fixed code that relied on removed dependencies. ([#604])
423
424## [2.0.0]! - 2016-09-30
425### Added
426- [`unambiguous`] rule: report modules that are not unambiguously ES modules.
427- `recommended` shared config. Roughly `errors` and `warnings` mixed together,
428 with some `parserOptions` in the mix. ([#402])
429- `react` shared config: added `jsx: true` to `parserOptions.ecmaFeatures`.
430- Added [`no-webpack-loader-syntax`] rule: forbid custom Webpack loader syntax in imports. ([#586], thanks [@fson]!)
431- Add option `newlines-between: "ignore"` to [`order`] ([#519])
432- Added [`no-unassigned-import`] rule ([#529])
433
434### Breaking
435- [`import/extensions` setting] defaults to `['.js']`. ([#306])
436- [`import/ignore` setting] defaults to nothing, and ambiguous modules are ignored natively. This means importing from CommonJS modules will no longer be reported by [`default`], [`named`], or [`namespace`], regardless of `import/ignore`. ([#270])
437- [`newline-after-import`]: Removed need for an empty line after an inline `require` call ([#570])
438- [`order`]: Default value for `newlines-between` option is now `ignore` ([#519])
439
440### Changed
441- `imports-first` is renamed to [`first`]. `imports-first` alias will continue to
442 exist, but may be removed in a future major release.
443- Case-sensitivity: now specifically (and optionally) reported by [`no-unresolved`].
444 Other rules will ignore case-mismatches on paths on case-insensitive filesystems. ([#311])
445
446### Fixed
447- [`no-internal-modules`]: support `@`-scoped packages ([#577]+[#578], thanks [@spalger])
448
449## [1.16.0] - 2016-09-22
450### Added
451- Added [`no-dynamic-require`] rule: forbid `require()` calls with expressions. ([#567], [#568])
452- Added [`no-internal-modules`] rule: restrict deep package imports to specific folders. ([#485], thanks [@spalger]!)
453- [`extensions`]: allow override of a chosen default with options object ([#555], thanks [@ljharb]!)
454
455### Fixed
456- [`no-named-as-default`] no longer false-positives on `export default from '...'` ([#566], thanks [@preco21])
457- [`default`]: allow re-export of values from ignored files as default ([#545], thanks [@skyrpex])
458
459## [1.15.0] - 2016-09-12
460### Added
461- Added an `allow` option to [`no-nodejs-modules`] to allow exceptions ([#452], [#509]).
462- Added [`no-absolute-path`] rule ([#530], [#538])
463- [`max-dependencies`] for specifying the maximum number of dependencies (both `import` and `require`) a module can have. (see [#489], thanks [@tizmagik])
464- Added glob option to config for [`no-extraneous-dependencies`], after much bikeshedding. Thanks, [@knpwrs]! ([#527])
465
466### Fixed
467- [`no-named-as-default-member`] Allow default import to have a property named "default" ([#507], [#508], thanks [@jquense] for both!)
468
469## [1.14.0] - 2016-08-22
470### Added
471- [`import/parsers` setting]: parse some dependencies (i.e. TypeScript!) with a different parser than the ESLint-configured parser. ([#503])
472
473### Fixed
474- [`namespace`] exception for get property from `namespace` import, which are re-export from commonjs module ([#499] fixes [#416], thanks [@wKich])
475
476## [1.13.0] - 2016-08-11
477### Added
478- `allowComputed` option for [`namespace`] rule. If set to `true`, won't report
479 computed member references to namespaces. (see [#456])
480
481### Changed
482- Modified [`no-nodejs-modules`] error message to include the module's name ([#453], [#461])
483
484### Fixed
485- [`import/extensions` setting] is respected in spite of the appearance of imports
486 in an imported file. (fixes [#478], thanks [@rhys-vdw])
487
488## [1.12.0] - 2016-07-26
489### Added
490- [`import/external-module-folders` setting]: a possibility to configure folders for "external" modules ([#444], thanks [@zloirock])
491
492## [1.11.1] - 2016-07-20
493### Fixed
494- [`newline-after-import`] exception for `switch` branches with `require`s iff parsed as `sourceType:'module'`.
495 (still [#441], thanks again [@ljharb])
496
497## [1.11.0] - 2016-07-17
498### Added
499- Added an `peerDependencies` option to [`no-extraneous-dependencies`] to allow/forbid peer dependencies ([#423], [#428], thanks [@jfmengels]!).
500
501### Fixed
502- [`newline-after-import`] exception for multiple `require`s in an arrow
503 function expression (e.g. `() => require('a') || require('b')`). ([#441], thanks [@ljharb])
504
505## [1.10.3] - 2016-07-08
506### Fixed
507- removing `Symbol` dependencies (i.e. `for-of` loops) due to Node 0.10 polyfill
508 issue (see [#415]). Should not make any discernible semantic difference.
509
510## [1.10.2] - 2016-07-04
511### Fixed
512- Something horrible happened during `npm prepublish` of 1.10.1.
513 Several `rm -rf node_modules && npm i` and `gulp clean && npm prepublish`s later, it is rebuilt and republished as 1.10.2. Thanks [@rhettlivingston] for noticing and reporting!
514
515## [1.10.1] - 2016-07-02 [YANKED]
516### Added
517- Officially support ESLint 3.x. (peerDependencies updated to `2.x - 3.x`)
518
519## [1.10.0] - 2016-06-30
520### Added
521- Added new rule [`no-restricted-paths`]. ([#155]/[#371], thanks [@lo1tuma])
522- [`import/core-modules` setting]: allow configuration of additional module names,
523 to be treated as builtin modules (a la `path`, etc. in Node). ([#275] + [#365], thanks [@sindresorhus] for driving)
524- React Native shared config (based on comment from [#283])
525
526### Fixed
527- Fixed crash with `newline-after-import` related to the use of switch cases. (fixes [#386], thanks [@ljharb] for reporting) ([#395])
528
529## [1.9.2] - 2016-06-21
530### Fixed
531- Issues with ignored/CJS files in [`export`] and [`no-deprecated`] rules. ([#348], [#370])
532
533## [1.9.1] - 2016-06-16
534### Fixed
535- Reordered precedence for loading resolvers. ([#373])
536
537## [1.9.0] - 2016-06-10
538### Added
539- Added support TomDoc comments to [`no-deprecated`]. ([#321], thanks [@josh])
540- Added support for loading custom resolvers ([#314], thanks [@le0nik])
541
542### Fixed
543- [`prefer-default-export`] handles `export function` and `export const` in same file ([#359], thanks [@scottnonnenberg])
544
545## [1.8.1] - 2016-05-23
546### Fixed
547- `export * from 'foo'` now properly ignores a `default` export from `foo`, if any. ([#328]/[#332], thanks [@jkimbo])
548 This impacts all static analysis of imported names. ([`default`], [`named`], [`namespace`], [`export`])
549- Make [`order`]'s `newline-between` option handle multiline import statements ([#313], thanks [@singles])
550- Make [`order`]'s `newline-between` option handle not assigned import statements ([#313], thanks [@singles])
551- Make [`order`]'s `newline-between` option ignore `require` statements inside object literals ([#313], thanks [@singles])
552- [`prefer-default-export`] properly handles deep destructuring, `export * from ...`, and files with no exports. ([#342]+[#343], thanks [@scottnonnenberg])
553
554## [1.8.0] - 2016-05-11
555### Added
556- [`prefer-default-export`], new rule. ([#308], thanks [@gavriguy])
557
558### Fixed
559- Ignore namespace / ES7 re-exports in [`no-mutable-exports`]. ([#317], fixed by [#322]. thanks [@borisyankov] + [@jfmengels])
560- Make [`no-extraneous-dependencies`] handle scoped packages ([#316], thanks [@jfmengels])
561
562## [1.7.0] - 2016-05-06
563### Added
564- [`newline-after-import`], new rule. ([#245], thanks [@singles])
565- Added an `optionalDependencies` option to [`no-extraneous-dependencies`] to allow/forbid optional dependencies ([#266], thanks [@jfmengels]).
566- Added `newlines-between` option to [`order`] rule ([#298], thanks [@singles])
567- add [`no-mutable-exports`] rule ([#290], thanks [@josh])
568- [`import/extensions` setting]: a list of file extensions to parse as modules
569 and search for `export`s. If unspecified, all extensions are considered valid (for now).
570 In v2, this will likely default to `['.js', MODULE_EXT]`. ([#297], to fix [#267])
571
572### Fixed
573- [`extensions`]: fallback to source path for extension enforcement if imported
574 module is not resolved. Also, never report for builtins (i.e. `path`). ([#296])
575
576## [1.6.1] - 2016-04-28
577### Fixed
578- [`no-named-as-default-member`]: don't crash on rest props. ([#281], thanks [@SimenB])
579- support for Node 6: don't pass `null` to `path` functions.
580 Thanks to [@strawbrary] for bringing this up ([#272]) and adding OSX support to the Travis
581 config ([#288]).
582
583## [1.6.0] - 2016-04-25
584### Added
585- add [`no-named-as-default-member`] to `warnings` canned config
586- add [`no-extraneous-dependencies`] rule ([#241], thanks [@jfmengels])
587- add [`extensions`] rule ([#250], thanks [@lo1tuma])
588- add [`no-nodejs-modules`] rule ([#261], thanks [@jfmengels])
589- add [`order`] rule ([#247], thanks [@jfmengels])
590- consider `resolve.fallback` config option in the webpack resolver ([#254])
591
592### Changed
593- [`imports-first`] now allows directives (i.e. `'use strict'`) strictly before
594 any imports ([#256], thanks [@lemonmade])
595
596### Fixed
597- [`named`] now properly ignores the source module if a name is re-exported from
598 an ignored file (i.e. `node_modules`). Also improved the reported error. (thanks to [@jimbolla] for reporting)
599- [`no-named-as-default-member`] had a crash on destructuring in loops (thanks for heads up from [@lemonmade])
600
601## [1.5.0] - 2016-04-18
602### Added
603- report resolver errors at the top of the linted file
604- add [`no-namespace`] rule ([#239], thanks [@singles])
605- add [`no-named-as-default-member`] rule ([#243], thanks [@dmnd])
606
607### Changed
608- Rearranged rule groups in README in preparation for more style guide rules
609
610### Removed
611- support for Node 0.10, via `es6-*` ponyfills. Using native Map/Set/Symbol.
612
613## [1.4.0] - 2016-03-25
614### Added
615- Resolver plugin interface v2: more explicit response format that more clearly covers the found-but-core-module case, where there is no path.
616 Still backwards-compatible with the original version of the resolver spec.
617- [Resolver documentation](./resolvers/README.md)
618
619### Changed
620- using `package.json/files` instead of `.npmignore` for package file inclusion ([#228], thanks [@mathieudutour])
621- using `es6-*` ponyfills instead of `babel-runtime`
622
623## [1.3.0] - 2016-03-20
624Major perf improvements. Between parsing only once and ignoring gigantic, non-module `node_modules`,
625there is very little added time.
626
627My test project takes 17s to lint completely, down from 55s, when using the
628memoizing parser, and takes only 27s with naked `babel-eslint` (thus, reparsing local modules).
629
630### Added
631- This change log ([#216])
632- Experimental memoizing [parser](./memo-parser/README.md)
633
634### Fixed
635- Huge reduction in execution time by _only_ ignoring [`import/ignore` setting] if
636 something that looks like an `export` is detected in the module content.
637
638## [1.2.0] - 2016-03-19
639Thanks [@lencioni] for identifying a huge amount of rework in resolve and kicking
640off a bunch of memoization.
641
642I'm seeing 62% improvement over my normal test codebase when executing only
643[`no-unresolved`] in isolation, and ~35% total reduction in lint time.
644
645### Changed
646- added caching to core/resolve via [#214], configured via [`import/cache` setting]
647
648## [1.1.0] - 2016-03-15
649### Added
650- Added an [`ignore`](./docs/rules/no-unresolved.md#ignore) option to [`no-unresolved`] for those pesky files that no resolver can find. (still prefer enhancing the Webpack and Node resolvers to using it, though). See [#89] for details.
651
652## [1.0.4] - 2016-03-11
653
654### Changed
655- respect hoisting for deep namespaces ([`namespace`]/[`no-deprecated`]) ([#211])
656
657### Fixed
658- don't crash on self references ([#210])
659- correct cache behavior in `eslint_d` for deep namespaces ([#200])
660
661## [1.0.3] - 2016-02-26
662
663### Changed
664- no-deprecated follows deep namespaces ([#191])
665
666### Fixed
667- [`namespace`] no longer flags modules with only a default export as having no names. (ns.default is valid ES6)
668
669## [1.0.2] - 2016-02-26
670
671### Fixed
672- don't parse imports with no specifiers ([#192])
673
674## [1.0.1] - 2016-02-25
675
676### Fixed
677- export `stage-0` shared config
678- documented [`no-deprecated`]
679- deep namespaces are traversed regardless of how they get imported ([#189])
680
681## [1.0.0] - 2016-02-24
682
683### Added
684- [`no-deprecated`]: WIP rule to let you know at lint time if you're using deprecated functions, constants, classes, or modules.
685
686### Changed
687- [`namespace`]: support deep namespaces ([#119] via [#157])
688
689## [1.0.0-beta.0] - 2016-02-13
690
691### Changed
692- support for (only) ESLint 2.x
693- no longer needs/refers to `import/parser` or `import/parse-options`. Instead, ESLint provides the configured parser + options to the rules, and they use that to parse dependencies.
694
695### Removed
696
697- `babylon` as default import parser (see Breaking)
698
699## [0.13.0] - 2016-02-08
700### Added
701- [`no-commonjs`] rule
702- [`no-amd`] rule
703
704### Removed
705- Removed vestigial `no-require` rule. [`no-commonjs`] is more complete.
706
707## [0.12.2] - 2016-02-06 [YANKED]
708Unpublished from npm and re-released as 0.13.0. See [#170].
709
710## [0.12.1] - 2015-12-17
711### Changed
712- Broke docs for rules out into individual files.
713
714## [0.12.0] - 2015-12-14
715### Changed
716- Ignore [`import/ignore` setting] if exports are actually found in the parsed module. Does this to support use of `jsnext:main` in `node_modules` without the pain of managing an allow list or a nuanced deny list.
717
718## [0.11.0] - 2015-11-27
719### Added
720- Resolver plugins. Now the linter can read Webpack config, properly follow aliases and ignore externals, dismisses inline loaders, etc. etc.!
721
722## Earlier releases (0.10.1 and younger)
723See [GitHub release notes](https://github.com/benmosher/eslint-plugin-import/releases?after=v0.11.0)
724for info on changes for earlier releases.
725
726
727[`import/cache` setting]: ./README.md#importcache
728[`import/ignore` setting]: ./README.md#importignore
729[`import/extensions` setting]: ./README.md#importextensions
730[`import/parsers` setting]: ./README.md#importparsers
731[`import/core-modules` setting]: ./README.md#importcore-modules
732[`import/external-module-folders` setting]: ./README.md#importexternal-module-folders
733[`internal-regex` setting]: ./README.md#importinternal-regex
734
735[`default`]: ./docs/rules/default.md
736[`dynamic-import-chunkname`]: ./docs/rules/dynamic-import-chunkname.md
737[`export`]: ./docs/rules/export.md
738[`exports-last`]: ./docs/rules/exports-last.md
739[`extensions`]: ./docs/rules/extensions.md
740[`first`]: ./docs/rules/first.md
741[`group-exports`]: ./docs/rules/group-exports.md
742[`imports-first`]: ./docs/rules/first.md
743[`max-dependencies`]: ./docs/rules/max-dependencies.md
744[`named`]: ./docs/rules/named.md
745[`namespace`]: ./docs/rules/namespace.md
746[`newline-after-import`]: ./docs/rules/newline-after-import.md
747[`no-absolute-path`]: ./docs/rules/no-absolute-path.md
748[`no-amd`]: ./docs/rules/no-amd.md
749[`no-anonymous-default-export`]: ./docs/rules/no-anonymous-default-export.md
750[`no-commonjs`]: ./docs/rules/no-commonjs.md
751[`no-cycle`]: ./docs/rules/no-cycle.md
752[`no-default-export`]: ./docs/rules/no-default-export.md
753[`no-deprecated`]: ./docs/rules/no-deprecated.md
754[`no-duplicates`]: ./docs/rules/no-duplicates.md
755[`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md
756[`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md
757[`no-import-module-exports`]: ./docs/rules/no-import-module-exports.md
758[`no-internal-modules`]: ./docs/rules/no-internal-modules.md
759[`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md
760[`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md
761[`no-named-as-default`]: ./docs/rules/no-named-as-default.md
762[`no-named-default`]: ./docs/rules/no-named-default.md
763[`no-named-export`]: ./docs/rules/no-named-export.md
764[`no-namespace`]: ./docs/rules/no-namespace.md
765[`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md
766[`no-relative-packages`]: ./docs/rules/no-relative-packages.md
767[`no-relative-parent-imports`]: ./docs/rules/no-relative-parent-imports.md
768[`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md
769[`no-self-import`]: ./docs/rules/no-self-import.md
770[`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md
771[`no-unresolved`]: ./docs/rules/no-unresolved.md
772[`no-unused-modules`]: ./docs/rules/no-unused-modules.md
773[`no-useless-path-segments`]: ./docs/rules/no-useless-path-segments.md
774[`no-webpack-loader-syntax`]: ./docs/rules/no-webpack-loader-syntax.md
775[`order`]: ./docs/rules/order.md
776[`prefer-default-export`]: ./docs/rules/prefer-default-export.md
777[`unambiguous`]: ./docs/rules/unambiguous.md
778
779[`memo-parser`]: ./memo-parser/README.md
780
781[#2071]: https://github.com/benmosher/eslint-plugin-import/pull/2071
782[#2034]: https://github.com/benmosher/eslint-plugin-import/pull/2034
783[#2026]: https://github.com/benmosher/eslint-plugin-import/pull/2026
784[#2022]: https://github.com/benmosher/eslint-plugin-import/pull/2022
785[#2021]: https://github.com/benmosher/eslint-plugin-import/pull/2021
786[#2012]: https://github.com/benmosher/eslint-plugin-import/pull/2012
787[#1997]: https://github.com/benmosher/eslint-plugin-import/pull/1997
788[#1993]: https://github.com/benmosher/eslint-plugin-import/pull/1993
789[#1990]: https://github.com/benmosher/eslint-plugin-import/pull/1990
790[#1985]: https://github.com/benmosher/eslint-plugin-import/pull/1985
791[#1983]: https://github.com/benmosher/eslint-plugin-import/pull/1983
792[#1974]: https://github.com/benmosher/eslint-plugin-import/pull/1974
793[#1958]: https://github.com/benmosher/eslint-plugin-import/pull/1958
794[#1948]: https://github.com/benmosher/eslint-plugin-import/pull/1948
795[#1947]: https://github.com/benmosher/eslint-plugin-import/pull/1947
796[#1944]: https://github.com/benmosher/eslint-plugin-import/pull/1944
797[#1940]: https://github.com/benmosher/eslint-plugin-import/pull/1940
798[#1897]: https://github.com/benmosher/eslint-plugin-import/pull/1897
799[#1889]: https://github.com/benmosher/eslint-plugin-import/pull/1889
800[#1878]: https://github.com/benmosher/eslint-plugin-import/pull/1878
801[#1860]: https://github.com/benmosher/eslint-plugin-import/pull/1860
802[#1848]: https://github.com/benmosher/eslint-plugin-import/pull/1848
803[#1846]: https://github.com/benmosher/eslint-plugin-import/pull/1846
804[#1836]: https://github.com/benmosher/eslint-plugin-import/pull/1836
805[#1835]: https://github.com/benmosher/eslint-plugin-import/pull/1835
806[#1833]: https://github.com/benmosher/eslint-plugin-import/pull/1833
807[#1831]: https://github.com/benmosher/eslint-plugin-import/pull/1831
808[#1830]: https://github.com/benmosher/eslint-plugin-import/pull/1830
809[#1824]: https://github.com/benmosher/eslint-plugin-import/pull/1824
810[#1823]: https://github.com/benmosher/eslint-plugin-import/pull/1823
811[#1822]: https://github.com/benmosher/eslint-plugin-import/pull/1822
812[#1820]: https://github.com/benmosher/eslint-plugin-import/pull/1820
813[#1819]: https://github.com/benmosher/eslint-plugin-import/pull/1819
814[#1802]: https://github.com/benmosher/eslint-plugin-import/pull/1802
815[#1788]: https://github.com/benmosher/eslint-plugin-import/pull/1788
816[#1786]: https://github.com/benmosher/eslint-plugin-import/pull/1786
817[#1785]: https://github.com/benmosher/eslint-plugin-import/pull/1785
818[#1776]: https://github.com/benmosher/eslint-plugin-import/pull/1776
819[#1770]: https://github.com/benmosher/eslint-plugin-import/pull/1770
820[#1764]: https://github.com/benmosher/eslint-plugin-import/pull/1764
821[#1763]: https://github.com/benmosher/eslint-plugin-import/pull/1763
822[#1751]: https://github.com/benmosher/eslint-plugin-import/pull/1751
823[#1744]: https://github.com/benmosher/eslint-plugin-import/pull/1744
824[#1736]: https://github.com/benmosher/eslint-plugin-import/pull/1736
825[#1735]: https://github.com/benmosher/eslint-plugin-import/pull/1735
826[#1726]: https://github.com/benmosher/eslint-plugin-import/pull/1726
827[#1724]: https://github.com/benmosher/eslint-plugin-import/pull/1724
828[#1719]: https://github.com/benmosher/eslint-plugin-import/pull/1719
829[#1696]: https://github.com/benmosher/eslint-plugin-import/pull/1696
830[#1691]: https://github.com/benmosher/eslint-plugin-import/pull/1691
831[#1690]: https://github.com/benmosher/eslint-plugin-import/pull/1690
832[#1689]: https://github.com/benmosher/eslint-plugin-import/pull/1689
833[#1681]: https://github.com/benmosher/eslint-plugin-import/pull/1681
834[#1676]: https://github.com/benmosher/eslint-plugin-import/pull/1676
835[#1666]: https://github.com/benmosher/eslint-plugin-import/pull/1666
836[#1664]: https://github.com/benmosher/eslint-plugin-import/pull/1664
837[#1658]: https://github.com/benmosher/eslint-plugin-import/pull/1658
838[#1651]: https://github.com/benmosher/eslint-plugin-import/pull/1651
839[#1626]: https://github.com/benmosher/eslint-plugin-import/pull/1626
840[#1620]: https://github.com/benmosher/eslint-plugin-import/pull/1620
841[#1619]: https://github.com/benmosher/eslint-plugin-import/pull/1619
842[#1612]: https://github.com/benmosher/eslint-plugin-import/pull/1612
843[#1611]: https://github.com/benmosher/eslint-plugin-import/pull/1611
844[#1605]: https://github.com/benmosher/eslint-plugin-import/pull/1605
845[#1586]: https://github.com/benmosher/eslint-plugin-import/pull/1586
846[#1572]: https://github.com/benmosher/eslint-plugin-import/pull/1572
847[#1569]: https://github.com/benmosher/eslint-plugin-import/pull/1569
848[#1563]: https://github.com/benmosher/eslint-plugin-import/pull/1563
849[#1560]: https://github.com/benmosher/eslint-plugin-import/pull/1560
850[#1551]: https://github.com/benmosher/eslint-plugin-import/pull/1551
851[#1542]: https://github.com/benmosher/eslint-plugin-import/pull/1542
852[#1534]: https://github.com/benmosher/eslint-plugin-import/pull/1534
853[#1528]: https://github.com/benmosher/eslint-plugin-import/pull/1528
854[#1526]: https://github.com/benmosher/eslint-plugin-import/pull/1526
855[#1521]: https://github.com/benmosher/eslint-plugin-import/pull/1521
856[#1519]: https://github.com/benmosher/eslint-plugin-import/pull/1519
857[#1507]: https://github.com/benmosher/eslint-plugin-import/pull/1507
858[#1506]: https://github.com/benmosher/eslint-plugin-import/pull/1506
859[#1496]: https://github.com/benmosher/eslint-plugin-import/pull/1496
860[#1495]: https://github.com/benmosher/eslint-plugin-import/pull/1495
861[#1494]: https://github.com/benmosher/eslint-plugin-import/pull/1494
862[#1493]: https://github.com/benmosher/eslint-plugin-import/pull/1493
863[#1491]: https://github.com/benmosher/eslint-plugin-import/pull/1491
864[#1472]: https://github.com/benmosher/eslint-plugin-import/pull/1472
865[#1470]: https://github.com/benmosher/eslint-plugin-import/pull/1470
866[#1447]: https://github.com/benmosher/eslint-plugin-import/pull/1447
867[#1439]: https://github.com/benmosher/eslint-plugin-import/pull/1439
868[#1436]: https://github.com/benmosher/eslint-plugin-import/pull/1436
869[#1435]: https://github.com/benmosher/eslint-plugin-import/pull/1435
870[#1425]: https://github.com/benmosher/eslint-plugin-import/pull/1425
871[#1419]: https://github.com/benmosher/eslint-plugin-import/pull/1419
872[#1412]: https://github.com/benmosher/eslint-plugin-import/pull/1412
873[#1409]: https://github.com/benmosher/eslint-plugin-import/pull/1409
874[#1404]: https://github.com/benmosher/eslint-plugin-import/pull/1404
875[#1401]: https://github.com/benmosher/eslint-plugin-import/pull/1401
876[#1393]: https://github.com/benmosher/eslint-plugin-import/pull/1393
877[#1389]: https://github.com/benmosher/eslint-plugin-import/pull/1389
878[#1386]: https://github.com/benmosher/eslint-plugin-import/pull/1386
879[#1377]: https://github.com/benmosher/eslint-plugin-import/pull/1377
880[#1375]: https://github.com/benmosher/eslint-plugin-import/pull/1375
881[#1372]: https://github.com/benmosher/eslint-plugin-import/pull/1372
882[#1371]: https://github.com/benmosher/eslint-plugin-import/pull/1371
883[#1370]: https://github.com/benmosher/eslint-plugin-import/pull/1370
884[#1363]: https://github.com/benmosher/eslint-plugin-import/pull/1363
885[#1360]: https://github.com/benmosher/eslint-plugin-import/pull/1360
886[#1358]: https://github.com/benmosher/eslint-plugin-import/pull/1358
887[#1356]: https://github.com/benmosher/eslint-plugin-import/pull/1356
888[#1354]: https://github.com/benmosher/eslint-plugin-import/pull/1354
889[#1352]: https://github.com/benmosher/eslint-plugin-import/pull/1352
890[#1347]: https://github.com/benmosher/eslint-plugin-import/pull/1347
891[#1345]: https://github.com/benmosher/eslint-plugin-import/pull/1345
892[#1342]: https://github.com/benmosher/eslint-plugin-import/pull/1342
893[#1340]: https://github.com/benmosher/eslint-plugin-import/pull/1340
894[#1333]: https://github.com/benmosher/eslint-plugin-import/pull/1333
895[#1331]: https://github.com/benmosher/eslint-plugin-import/pull/1331
896[#1330]: https://github.com/benmosher/eslint-plugin-import/pull/1330
897[#1320]: https://github.com/benmosher/eslint-plugin-import/pull/1320
898[#1319]: https://github.com/benmosher/eslint-plugin-import/pull/1319
899[#1312]: https://github.com/benmosher/eslint-plugin-import/pull/1312
900[#1308]: https://github.com/benmosher/eslint-plugin-import/pull/1308
901[#1304]: https://github.com/benmosher/eslint-plugin-import/pull/1304
902[#1297]: https://github.com/benmosher/eslint-plugin-import/pull/1297
903[#1295]: https://github.com/benmosher/eslint-plugin-import/pull/1295
904[#1294]: https://github.com/benmosher/eslint-plugin-import/pull/1294
905[#1290]: https://github.com/benmosher/eslint-plugin-import/pull/1290
906[#1277]: https://github.com/benmosher/eslint-plugin-import/pull/1277
907[#1257]: https://github.com/benmosher/eslint-plugin-import/pull/1257
908[#1253]: https://github.com/benmosher/eslint-plugin-import/pull/1253
909[#1248]: https://github.com/benmosher/eslint-plugin-import/pull/1248
910[#1238]: https://github.com/benmosher/eslint-plugin-import/pull/1238
911[#1237]: https://github.com/benmosher/eslint-plugin-import/pull/1237
912[#1235]: https://github.com/benmosher/eslint-plugin-import/pull/1235
913[#1234]: https://github.com/benmosher/eslint-plugin-import/pull/1234
914[#1232]: https://github.com/benmosher/eslint-plugin-import/pull/1232
915[#1218]: https://github.com/benmosher/eslint-plugin-import/pull/1218
916[#1176]: https://github.com/benmosher/eslint-plugin-import/pull/1176
917[#1163]: https://github.com/benmosher/eslint-plugin-import/pull/1163
918[#1157]: https://github.com/benmosher/eslint-plugin-import/pull/1157
919[#1151]: https://github.com/benmosher/eslint-plugin-import/pull/1151
920[#1142]: https://github.com/benmosher/eslint-plugin-import/pull/1142
921[#1139]: https://github.com/benmosher/eslint-plugin-import/pull/1139
922[#1137]: https://github.com/benmosher/eslint-plugin-import/pull/1137
923[#1135]: https://github.com/benmosher/eslint-plugin-import/pull/1135
924[#1128]: https://github.com/benmosher/eslint-plugin-import/pull/1128
925[#1126]: https://github.com/benmosher/eslint-plugin-import/pull/1126
926[#1122]: https://github.com/benmosher/eslint-plugin-import/pull/1122
927[#1112]: https://github.com/benmosher/eslint-plugin-import/pull/1112
928[#1107]: https://github.com/benmosher/eslint-plugin-import/pull/1107
929[#1106]: https://github.com/benmosher/eslint-plugin-import/pull/1106
930[#1105]: https://github.com/benmosher/eslint-plugin-import/pull/1105
931[#1093]: https://github.com/benmosher/eslint-plugin-import/pull/1093
932[#1085]: https://github.com/benmosher/eslint-plugin-import/pull/1085
933[#1068]: https://github.com/benmosher/eslint-plugin-import/pull/1068
934[#1049]: https://github.com/benmosher/eslint-plugin-import/pull/1049
935[#1046]: https://github.com/benmosher/eslint-plugin-import/pull/1046
936[#966]: https://github.com/benmosher/eslint-plugin-import/pull/966
937[#944]: https://github.com/benmosher/eslint-plugin-import/pull/944
938[#912]: https://github.com/benmosher/eslint-plugin-import/pull/912
939[#908]: https://github.com/benmosher/eslint-plugin-import/pull/908
940[#891]: https://github.com/benmosher/eslint-plugin-import/pull/891
941[#889]: https://github.com/benmosher/eslint-plugin-import/pull/889
942[#880]: https://github.com/benmosher/eslint-plugin-import/pull/880
943[#871]: https://github.com/benmosher/eslint-plugin-import/pull/871
944[#858]: https://github.com/benmosher/eslint-plugin-import/pull/858
945[#843]: https://github.com/benmosher/eslint-plugin-import/pull/843
946[#804]: https://github.com/benmosher/eslint-plugin-import/pull/804
947[#797]: https://github.com/benmosher/eslint-plugin-import/pull/797
948[#794]: https://github.com/benmosher/eslint-plugin-import/pull/794
949[#744]: https://github.com/benmosher/eslint-plugin-import/pull/744
950[#742]: https://github.com/benmosher/eslint-plugin-import/pull/742
951[#737]: https://github.com/benmosher/eslint-plugin-import/pull/737
952[#727]: https://github.com/benmosher/eslint-plugin-import/pull/727
953[#721]: https://github.com/benmosher/eslint-plugin-import/pull/721
954[#712]: https://github.com/benmosher/eslint-plugin-import/pull/712
955[#696]: https://github.com/benmosher/eslint-plugin-import/pull/696
956[#685]: https://github.com/benmosher/eslint-plugin-import/pull/685
957[#680]: https://github.com/benmosher/eslint-plugin-import/pull/680
958[#654]: https://github.com/benmosher/eslint-plugin-import/pull/654
959[#639]: https://github.com/benmosher/eslint-plugin-import/pull/639
960[#632]: https://github.com/benmosher/eslint-plugin-import/pull/632
961[#630]: https://github.com/benmosher/eslint-plugin-import/pull/630
962[#629]: https://github.com/benmosher/eslint-plugin-import/pull/629
963[#628]: https://github.com/benmosher/eslint-plugin-import/pull/628
964[#596]: https://github.com/benmosher/eslint-plugin-import/pull/596
965[#586]: https://github.com/benmosher/eslint-plugin-import/pull/586
966[#578]: https://github.com/benmosher/eslint-plugin-import/pull/578
967[#568]: https://github.com/benmosher/eslint-plugin-import/pull/568
968[#555]: https://github.com/benmosher/eslint-plugin-import/pull/555
969[#538]: https://github.com/benmosher/eslint-plugin-import/pull/538
970[#527]: https://github.com/benmosher/eslint-plugin-import/pull/527
971[#518]: https://github.com/benmosher/eslint-plugin-import/pull/518
972[#509]: https://github.com/benmosher/eslint-plugin-import/pull/509
973[#508]: https://github.com/benmosher/eslint-plugin-import/pull/508
974[#503]: https://github.com/benmosher/eslint-plugin-import/pull/503
975[#499]: https://github.com/benmosher/eslint-plugin-import/pull/499
976[#489]: https://github.com/benmosher/eslint-plugin-import/pull/489
977[#485]: https://github.com/benmosher/eslint-plugin-import/pull/485
978[#461]: https://github.com/benmosher/eslint-plugin-import/pull/461
979[#449]: https://github.com/benmosher/eslint-plugin-import/pull/449
980[#444]: https://github.com/benmosher/eslint-plugin-import/pull/444
981[#428]: https://github.com/benmosher/eslint-plugin-import/pull/428
982[#395]: https://github.com/benmosher/eslint-plugin-import/pull/395
983[#371]: https://github.com/benmosher/eslint-plugin-import/pull/371
984[#365]: https://github.com/benmosher/eslint-plugin-import/pull/365
985[#359]: https://github.com/benmosher/eslint-plugin-import/pull/359
986[#343]: https://github.com/benmosher/eslint-plugin-import/pull/343
987[#332]: https://github.com/benmosher/eslint-plugin-import/pull/332
988[#322]: https://github.com/benmosher/eslint-plugin-import/pull/322
989[#321]: https://github.com/benmosher/eslint-plugin-import/pull/321
990[#316]: https://github.com/benmosher/eslint-plugin-import/pull/316
991[#314]: https://github.com/benmosher/eslint-plugin-import/pull/314
992[#308]: https://github.com/benmosher/eslint-plugin-import/pull/308
993[#298]: https://github.com/benmosher/eslint-plugin-import/pull/298
994[#297]: https://github.com/benmosher/eslint-plugin-import/pull/297
995[#296]: https://github.com/benmosher/eslint-plugin-import/pull/296
996[#290]: https://github.com/benmosher/eslint-plugin-import/pull/290
997[#289]: https://github.com/benmosher/eslint-plugin-import/pull/289
998[#288]: https://github.com/benmosher/eslint-plugin-import/pull/288
999[#287]: https://github.com/benmosher/eslint-plugin-import/pull/287
1000[#278]: https://github.com/benmosher/eslint-plugin-import/pull/278
1001[#261]: https://github.com/benmosher/eslint-plugin-import/pull/261
1002[#256]: https://github.com/benmosher/eslint-plugin-import/pull/256
1003[#254]: https://github.com/benmosher/eslint-plugin-import/pull/254
1004[#250]: https://github.com/benmosher/eslint-plugin-import/pull/250
1005[#247]: https://github.com/benmosher/eslint-plugin-import/pull/247
1006[#245]: https://github.com/benmosher/eslint-plugin-import/pull/245
1007[#243]: https://github.com/benmosher/eslint-plugin-import/pull/243
1008[#241]: https://github.com/benmosher/eslint-plugin-import/pull/241
1009[#239]: https://github.com/benmosher/eslint-plugin-import/pull/239
1010[#228]: https://github.com/benmosher/eslint-plugin-import/pull/228
1011[#211]: https://github.com/benmosher/eslint-plugin-import/pull/211
1012[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
1013[#157]: https://github.com/benmosher/eslint-plugin-import/pull/157
1014[#2067]: https://github.com/benmosher/eslint-plugin-import/issues/2067
1015[#2056]: https://github.com/benmosher/eslint-plugin-import/issues/2056
1016[#2063]: https://github.com/benmosher/eslint-plugin-import/issues/2063
1017[#1965]: https://github.com/benmosher/eslint-plugin-import/issues/1965
1018[#1924]: https://github.com/benmosher/eslint-plugin-import/issues/1924
1019[#1854]: https://github.com/benmosher/eslint-plugin-import/issues/1854
1020[#1841]: https://github.com/benmosher/eslint-plugin-import/issues/1841
1021[#1834]: https://github.com/benmosher/eslint-plugin-import/issues/1834
1022[#1814]: https://github.com/benmosher/eslint-plugin-import/issues/1814
1023[#1811]: https://github.com/benmosher/eslint-plugin-import/issues/1811
1024[#1808]: https://github.com/benmosher/eslint-plugin-import/issues/1808
1025[#1805]: https://github.com/benmosher/eslint-plugin-import/issues/1805
1026[#1801]: https://github.com/benmosher/eslint-plugin-import/issues/1801
1027[#1722]: https://github.com/benmosher/eslint-plugin-import/issues/1722
1028[#1704]: https://github.com/benmosher/eslint-plugin-import/issues/1704
1029[#1702]: https://github.com/benmosher/eslint-plugin-import/issues/1702
1030[#1635]: https://github.com/benmosher/eslint-plugin-import/issues/1635
1031[#1631]: https://github.com/benmosher/eslint-plugin-import/issues/1631
1032[#1616]: https://github.com/benmosher/eslint-plugin-import/issues/1616
1033[#1613]: https://github.com/benmosher/eslint-plugin-import/issues/1613
1034[#1589]: https://github.com/benmosher/eslint-plugin-import/issues/1589
1035[#1565]: https://github.com/benmosher/eslint-plugin-import/issues/1565
1036[#1366]: https://github.com/benmosher/eslint-plugin-import/issues/1366
1037[#1334]: https://github.com/benmosher/eslint-plugin-import/issues/1334
1038[#1323]: https://github.com/benmosher/eslint-plugin-import/issues/1323
1039[#1322]: https://github.com/benmosher/eslint-plugin-import/issues/1322
1040[#1300]: https://github.com/benmosher/eslint-plugin-import/issues/1300
1041[#1293]: https://github.com/benmosher/eslint-plugin-import/issues/1293
1042[#1266]: https://github.com/benmosher/eslint-plugin-import/issues/1266
1043[#1256]: https://github.com/benmosher/eslint-plugin-import/issues/1256
1044[#1233]: https://github.com/benmosher/eslint-plugin-import/issues/1233
1045[#1175]: https://github.com/benmosher/eslint-plugin-import/issues/1175
1046[#1166]: https://github.com/benmosher/eslint-plugin-import/issues/1166
1047[#1144]: https://github.com/benmosher/eslint-plugin-import/issues/1144
1048[#1058]: https://github.com/benmosher/eslint-plugin-import/issues/1058
1049[#1035]: https://github.com/benmosher/eslint-plugin-import/issues/1035
1050[#931]: https://github.com/benmosher/eslint-plugin-import/issues/931
1051[#886]: https://github.com/benmosher/eslint-plugin-import/issues/886
1052[#863]: https://github.com/benmosher/eslint-plugin-import/issues/863
1053[#842]: https://github.com/benmosher/eslint-plugin-import/issues/842
1054[#839]: https://github.com/benmosher/eslint-plugin-import/issues/839
1055[#795]: https://github.com/benmosher/eslint-plugin-import/issues/795
1056[#793]: https://github.com/benmosher/eslint-plugin-import/issues/793
1057[#720]: https://github.com/benmosher/eslint-plugin-import/issues/720
1058[#717]: https://github.com/benmosher/eslint-plugin-import/issues/717
1059[#686]: https://github.com/benmosher/eslint-plugin-import/issues/686
1060[#671]: https://github.com/benmosher/eslint-plugin-import/issues/671
1061[#660]: https://github.com/benmosher/eslint-plugin-import/issues/660
1062[#653]: https://github.com/benmosher/eslint-plugin-import/issues/653
1063[#627]: https://github.com/benmosher/eslint-plugin-import/issues/627
1064[#620]: https://github.com/benmosher/eslint-plugin-import/issues/620
1065[#609]: https://github.com/benmosher/eslint-plugin-import/issues/609
1066[#604]: https://github.com/benmosher/eslint-plugin-import/issues/604
1067[#602]: https://github.com/benmosher/eslint-plugin-import/issues/602
1068[#601]: https://github.com/benmosher/eslint-plugin-import/issues/601
1069[#592]: https://github.com/benmosher/eslint-plugin-import/issues/592
1070[#577]: https://github.com/benmosher/eslint-plugin-import/issues/577
1071[#570]: https://github.com/benmosher/eslint-plugin-import/issues/570
1072[#567]: https://github.com/benmosher/eslint-plugin-import/issues/567
1073[#566]: https://github.com/benmosher/eslint-plugin-import/issues/566
1074[#545]: https://github.com/benmosher/eslint-plugin-import/issues/545
1075[#530]: https://github.com/benmosher/eslint-plugin-import/issues/530
1076[#529]: https://github.com/benmosher/eslint-plugin-import/issues/529
1077[#519]: https://github.com/benmosher/eslint-plugin-import/issues/519
1078[#507]: https://github.com/benmosher/eslint-plugin-import/issues/507
1079[#484]: https://github.com/benmosher/eslint-plugin-import/issues/484
1080[#478]: https://github.com/benmosher/eslint-plugin-import/issues/478
1081[#456]: https://github.com/benmosher/eslint-plugin-import/issues/456
1082[#453]: https://github.com/benmosher/eslint-plugin-import/issues/453
1083[#452]: https://github.com/benmosher/eslint-plugin-import/issues/452
1084[#447]: https://github.com/benmosher/eslint-plugin-import/issues/447
1085[#441]: https://github.com/benmosher/eslint-plugin-import/issues/441
1086[#423]: https://github.com/benmosher/eslint-plugin-import/issues/423
1087[#416]: https://github.com/benmosher/eslint-plugin-import/issues/416
1088[#415]: https://github.com/benmosher/eslint-plugin-import/issues/415
1089[#402]: https://github.com/benmosher/eslint-plugin-import/issues/402
1090[#386]: https://github.com/benmosher/eslint-plugin-import/issues/386
1091[#373]: https://github.com/benmosher/eslint-plugin-import/issues/373
1092[#370]: https://github.com/benmosher/eslint-plugin-import/issues/370
1093[#348]: https://github.com/benmosher/eslint-plugin-import/issues/348
1094[#342]: https://github.com/benmosher/eslint-plugin-import/issues/342
1095[#328]: https://github.com/benmosher/eslint-plugin-import/issues/328
1096[#317]: https://github.com/benmosher/eslint-plugin-import/issues/317
1097[#313]: https://github.com/benmosher/eslint-plugin-import/issues/313
1098[#311]: https://github.com/benmosher/eslint-plugin-import/issues/311
1099[#306]: https://github.com/benmosher/eslint-plugin-import/issues/306
1100[#286]: https://github.com/benmosher/eslint-plugin-import/issues/286
1101[#283]: https://github.com/benmosher/eslint-plugin-import/issues/283
1102[#281]: https://github.com/benmosher/eslint-plugin-import/issues/281
1103[#275]: https://github.com/benmosher/eslint-plugin-import/issues/275
1104[#272]: https://github.com/benmosher/eslint-plugin-import/issues/272
1105[#270]: https://github.com/benmosher/eslint-plugin-import/issues/270
1106[#267]: https://github.com/benmosher/eslint-plugin-import/issues/267
1107[#266]: https://github.com/benmosher/eslint-plugin-import/issues/266
1108[#216]: https://github.com/benmosher/eslint-plugin-import/issues/216
1109[#214]: https://github.com/benmosher/eslint-plugin-import/issues/214
1110[#210]: https://github.com/benmosher/eslint-plugin-import/issues/210
1111[#200]: https://github.com/benmosher/eslint-plugin-import/issues/200
1112[#192]: https://github.com/benmosher/eslint-plugin-import/issues/192
1113[#191]: https://github.com/benmosher/eslint-plugin-import/issues/191
1114[#189]: https://github.com/benmosher/eslint-plugin-import/issues/189
1115[#170]: https://github.com/benmosher/eslint-plugin-import/issues/170
1116[#155]: https://github.com/benmosher/eslint-plugin-import/issues/155
1117[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
1118[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89
1119
1120[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.1...HEAD
1121[2.23.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.23.0...v2.23.1
1122[2.23.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.1...v2.23.0
1123[2.22.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.0...v2.22.1
1124[2.22.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.22.0
1125[2.21.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.21.2
1126[2.21.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.0...v2.21.1
1127[2.21.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.20.2...v2.21.0
1128[2.20.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.20.1...v2.20.2
1129[2.20.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.20.0...v2.20.1
1130[2.19.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.19.1...v2.20.0
1131[2.19.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.19.0...v2.19.1
1132[2.19.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.2...v2.19.0
1133[2.18.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.1...v2.18.2
1134[2.18.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.0...v2.18.1
1135[2.18.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.3...v2.18.0
1136[2.17.3]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.2...v2.17.3
1137[2.17.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.1...v2.17.2
1138[2.17.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.0...v2.17.1
1139[2.17.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.16.0...v2.17.0
1140[2.16.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.15.0...v2.16.0
1141[2.15.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.14.0...v2.15.0
1142[2.14.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.13.0...v2.14.0
1143[2.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.12.0...v2.13.0
1144[2.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.11.0...v2.12.0
1145[2.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.10.0...v2.11.0
1146[2.10.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.9.0...v2.10.0
1147[2.9.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.8.0...v2.9.0
1148[2.8.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.7.0...v2.8.0
1149[2.7.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.6.1...v2.7.0
1150[2.6.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.6.0...v2.6.1
1151[2.6.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.5.0...v2.6.0
1152[2.5.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.4.0...v2.5.0
1153[2.4.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.3.0...v2.4.0
1154[2.3.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.2.0...v2.3.0
1155[2.2.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.1.0...v2.2.0
1156[2.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.1...v2.1.0
1157[2.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.0...v2.0.1
1158[2.0.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.16.0...v2.0.0
1159[1.16.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.15.0...v1.16.0
1160[1.15.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.14.0...v1.15.0
1161[1.14.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.13.0...v1.14.0
1162[1.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.12.0...v1.13.0
1163[1.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.11.1...v1.12.0
1164[1.11.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.11.0...v1.11.1
1165[1.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.3...v1.11.0
1166[1.10.3]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.2...v1.10.3
1167[1.10.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.1...v1.10.2
1168[1.10.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.0...v1.10.1
1169[1.10.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.2...v1.10.0
1170[1.9.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.1...v1.9.2
1171[1.9.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.0...v1.9.1
1172[1.9.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.8.1...v1.9.0
1173[1.8.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.8.0...v1.8.1
1174[1.8.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.7.0...v1.8.0
1175[1.7.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.6.1...v1.7.0
1176[1.6.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.6.0...v1.6.1
1177[1.6.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.5.0...1.6.0
1178[1.5.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.4.0...v1.5.0
1179[1.4.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.3.0...v1.4.0
1180[1.3.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.2.0...v1.3.0
1181[1.2.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.1.0...v1.2.0
1182[1.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.4...v1.1.0
1183[1.0.4]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.3...v1.0.4
1184[1.0.3]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.2...v1.0.3
1185[1.0.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.1...v1.0.2
1186[1.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.0...v1.0.1
1187[1.0.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.0-beta.0...v1.0.0
1188[1.0.0-beta.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.13.0...v1.0.0-beta.0
1189[0.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.1...v0.13.0
1190[0.12.2]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.1...v0.12.2
1191[0.12.1]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.0...v0.12.1
1192[0.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.11.0...v0.12.0
1193[0.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.10.1...v0.11.0
1194
1195[@mathieudutour]: https://github.com/mathieudutour
1196[@gausie]: https://github.com/gausie
1197[@singles]: https://github.com/singles
1198[@jfmengels]: https://github.com/jfmengels
1199[@lo1tuma]: https://github.com/lo1tuma
1200[@dmnd]: https://github.com/dmnd
1201[@lemonmade]: https://github.com/lemonmade
1202[@jimbolla]: https://github.com/jimbolla
1203[@jquense]: https://github.com/jquense
1204[@jonboiser]: https://github.com/jonboiser
1205[@taion]: https://github.com/taion
1206[@strawbrary]: https://github.com/strawbrary
1207[@SimenB]: https://github.com/SimenB
1208[@josh]: https://github.com/josh
1209[@borisyankov]: https://github.com/borisyankov
1210[@gavriguy]: https://github.com/gavriguy
1211[@jkimbo]: https://github.com/jkimbo
1212[@le0nik]: https://github.com/le0nik
1213[@scottnonnenberg]: https://github.com/scottnonnenberg
1214[@sindresorhus]: https://github.com/sindresorhus
1215[@ljharb]: https://github.com/ljharb
1216[@rhettlivingston]: https://github.com/rhettlivingston
1217[@zloirock]: https://github.com/zloirock
1218[@rhys-vdw]: https://github.com/rhys-vdw
1219[@wKich]: https://github.com/wKich
1220[@tizmagik]: https://github.com/tizmagik
1221[@knpwrs]: https://github.com/knpwrs
1222[@spalger]: https://github.com/spalger
1223[@preco21]: https://github.com/preco21
1224[@skyrpex]: https://github.com/skyrpex
1225[@fson]: https://github.com/fson
1226[@ntdb]: https://github.com/ntdb
1227[@jakubsta]: https://github.com/jakubsta
1228[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
1229[@duncanbeevers]: https://github.com/duncanbeevers
1230[@giodamelio]: https://github.com/giodamelio
1231[@ntdb]: https://github.com/ntdb
1232[@ramasilveyra]: https://github.com/ramasilveyra
1233[@sompylasar]: https://github.com/sompylasar
1234[@kevin940726]: https://github.com/kevin940726
1235[@eelyafi]: https://github.com/eelyafi
1236[@mastilver]: https://github.com/mastilver
1237[@jseminck]: https://github.com/jseminck
1238[@laysent]: https://github.com/laysent
1239[@k15a]: https://github.com/k15a
1240[@mplewis]: https://github.com/mplewis
1241[@rosswarren]: https://github.com/rosswarren
1242[@alexgorbatchev]: https://github.com/alexgorbatchev
1243[@tihonove]: https://github.com/tihonove
1244[@robertrossmann]: https://github.com/robertrossmann
1245[@isiahmeadows]: https://github.com/isiahmeadows
1246[@graingert]: https://github.com/graingert
1247[@danny-andrews]: https://github.com/dany-andrews
1248[@fengkfengk]: https://github.com/fengkfengk
1249[@futpib]: https://github.com/futpib
1250[@klimashkin]: https://github.com/klimashkin
1251[@lukeapage]: https://github.com/lukeapage
1252[@manovotny]: https://github.com/manovotny
1253[@mattijsbliek]: https://github.com/mattijsbliek
1254[@hulkish]: https://github.com/hulkish
1255[@chrislloyd]: https://github.com/chrislloyd
1256[@ai]: https://github.com/ai
1257[@syymza]: https://github.com/syymza
1258[@justinanastos]: https://github.com/justinanastos
1259[@1pete]: https://github.com/1pete
1260[@gajus]: https://github.com/gajus
1261[@jf248]: https://github.com/jf248
1262[@aravindet]: https://github.com/aravindet
1263[@pzhine]: https://github.com/pzhine
1264[@st-sloth]: https://github.com/st-sloth
1265[@ljqx]: https://github.com/ljqx
1266[@kirill-konshin]: https://github.com/kirill-konshin
1267[@asapach]: https://github.com/asapach
1268[@sergei-startsev]: https://github.com/sergei-startsev
1269[@ephys]: https://github.com/ephys
1270[@lydell]: https://github.com/lydell
1271[@jeffshaver]: https://github.com/jeffshaver
1272[@timkraut]: https://github.com/timkraut
1273[@TakeScoop]: https://github.com/TakeScoop
1274[@rfermann]: https://github.com/rfermann
1275[@bradennapier]: https://github.com/bradennapier
1276[@schmod]: https://github.com/schmod
1277[@echenley]: https://github.com/echenley
1278[@vikr01]: https://github.com/vikr01
1279[@bradzacher]: https://github.com/bradzacher
1280[@feychenie]: https://github.com/feychenie
1281[@kiwka]: https://github.com/kiwka
1282[@loganfsmyth]: https://github.com/loganfsmyth
1283[@golopot]: https://github.com/golopot
1284[@johndevedu]: https://github.com/johndevedu
1285[@charlessuh]: https://github.com/charlessuh
1286[@kgregory]: https://github.com/kgregory
1287[@christophercurrie]: https://github.com/christophercurrie
1288[@alex-page]: https://github.com/alex-page
1289[@benmosher]: https://github.com/benmosher
1290[@fooloomanzoo]: https://github.com/fooloomanzoo
1291[@sheepsteak]: https://github.com/sheepsteak
1292[@sharmilajesupaul]: https://github.com/sharmilajesupaul
1293[@lencioni]: https://github.com/lencioni
1294[@JounQin]: https://github.com/JounQin
1295[@atikenny]: https://github.com/atikenny
1296[@schmidsi]: https://github.com/schmidsi
1297[@TrevorBurnham]: https://github.com/TrevorBurnham
1298[@benmunro]: https://github.com/benmunro
1299[@tihonove]: https://github.com/tihonove
1300[@brendo]: https://github.com/brendo
1301[@saschanaz]: https://github.com/saschanaz
1302[@brettz9]: https://github.com/brettz9
1303[@Taranys]: https://github.com/Taranys
1304[@maxmalov]: https://github.com/maxmalov
1305[@marcusdarmstrong]: https://github.com/marcusdarmstrong
1306[@Mairu]: https://github.com/Mairu
1307[@aamulumi]: https://github.com/aamulumi
1308[@pcorpet]: https://github.com/pcorpet
1309[@stropho]: https://github.com/stropho
1310[@luczsoma]: https://github.com/luczsoma
1311[@christophercurrie]: https://github.com/christophercurrie
1312[@randallreedjr]: https://github.com/randallreedjr
1313[@Pessimistress]: https://github.com/Pessimistress
1314[@stekycz]: https://github.com/stekycz
1315[@dbrewer5]: https://github.com/dbrewer5
1316[@rsolomon]: https://github.com/rsolomon
1317[@joaovieira]: https://github.com/joaovieira
1318[@ivo-stefchev]: https://github.com/ivo-stefchev
1319[@skozin]: https://github.com/skozin
1320[@yordis]: https://github.com/yordis
1321[@sveyret]: https://github.com/sveyret
1322[@bmish]: https://github.com/bmish
1323[@redbugz]: https://github.com/redbugz
1324[@kentcdodds]: https://github.com/kentcdodds
1325[@IvanGoncharov]: https://github.com/IvanGoncharov
1326[@wschurman]: https://github.com/wschurman
1327[@fisker]: https://github.com/fisker
1328[@richardxia]: https://github.com/richardxia
1329[@TheCrueltySage]: https://github.com/TheCrueltySage
1330[@ernestostifano]: https://github.com/ernestostifano
1331[@forivall]: https://github.com/forivall
1332[@xpl]: https://github.com/xpl
1333[@astorije]: https://github.com/astorije
1334[@Ephem]: https://github.com/Ephem
1335[@kmui2]: https://github.com/kmui2
1336[@arvigeus]: https://github.com/arvigeus
1337[@atos1990]: https://github.com/atos1990
1338[@Hypnosphi]: https://github.com/Hypnosphi
1339[@nickofthyme]: https://github.com/nickofthyme
1340[@manuth]: https://github.com/manuth
1341[@julien1619]: https://github.com/julien1619
1342[@darkartur]: https://github.com/darkartur
1343[@MikeyBeLike]: https://github.com/MikeyBeLike
1344[@barbogast]: https://github.com/barbogast
1345[@adamborowski]: https://github.com/adamborowski
1346[@adjerbetian]: https://github.com/adjerbetian
1347[@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
1348[@malykhinvi]: https://github.com/malykhinvi
1349[@nicolashenry]: https://github.com/nicolashenry
1350[@fernandopasik]: https://github.com/fernandopasik
1351[@taye]: https://github.com/taye
1352[@AndrewLeedham]: https://github.com/AndrewLeedham
1353[@be5invis]: https://github.com/be5invis
1354[@noelebrun]: https://github.com/noelebrun
1355[@beatrizrezener]: https://github.com/beatrizrezener
1356[@3nuc]: https://github.com/3nuc
1357[@foray1010]: https://github.com/foray1010
1358[@tomprats]: https://github.com/tomprats
1359[@straub]: https://github.com/straub
1360[@andreubotella]: https://github.com/andreubotella
1361[@cherryblossom000]: https://github.com/cherryblossom000
1362[@Blasz]: https://github.com/Blasz
1363[@leonardodino]: https://github.com/leonardodino
1364[@fa93hws]: https://github.com/fa93hws
1365[@Librazy]: https://github.com/Librazy
1366[@swernerx]: https://github.com/swernerx
1367[@fsmaia]: https://github.com/fsmaia
1368[@MatthiasKunnen]: https://github.com/MatthiasKunnen
1369[@paztis]: https://github.com/paztis
1370[@FloEdelmann]: https://github.com/FloEdelmann
1371[@bicstone]: https://github.com/bicstone
1372[@guillaumewuip]: https://github.com/guillaumewuip
1373[@tapayne88]: https://github.com/tapayne88
1374[@panrafal]: https://github.com/panrafal
1375[@ttmarek]: https://github.com/ttmarek
1376[@christianvuerings]: https://github.com/christianvuerings
1377[@devongovett]: https://github.com/devongovett
1378[@dwardu]: https://github.com/dwardu
1379[@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
1380[@grit96]: https://github.com/grit96
1381[@lilling]: https://github.com/lilling
1382[@silviogutierrez]: https://github.com/silviogutierrez
1383[@aladdin-add]: https://github.com/aladdin-add
1384[@davidbonnet]: https://github.com/davidbonnet
1385[@hayes]: https://github.com/hayes
1386[@edemaine]: https://github.com/edemaine
\No newline at end of file