UNPKG

55.5 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.19.0] - 2019-12-08
10### Added
11- [`internal-regex`]: regex pattern for marking packages "internal" ([#1491], thanks [@Librazy])
12- [`group-exports`]: make aggregate module exports valid ([#1472], thanks [@atikenny])
13- [`no-namespace`]: Make rule fixable ([#1401], thanks [@TrevorBurnham])
14- support `parseForESLint` from custom parser ([#1435], thanks [@JounQin])
15- [`no-extraneous-dependencies`]: Implement support for [bundledDependencies](https://npm.github.io/using-pkgs-docs/package-json/types/bundleddependencies.html) ([#1436], thanks [@schmidsi]))
16- [`no-unused-modules`]: add flow type support ([#1542], thanks [@rfermann])
17- [`order`]: Adds support for pathGroups to allow ordering by defined patterns ([#795], [#1386], thanks [@Mairu])
18- [`no-duplicates`]: Add `considerQueryString` option : allow duplicate imports with different query strings ([#1107], thanks [@pcorpet]).
19- [`order`]: Add support for alphabetical sorting of import paths within import groups ([#1360], [#1105], [#629], thanks [@duncanbeevers], [@stropho], [@luczsoma], [@randallreedjr])
20- [`no-commonjs`]: add `allowConditionalRequire` option ([#1439], thanks [@Pessimistress])
21
22### Fixed
23- [`default`]: make error message less confusing ([#1470], thanks [@golopot])
24- Improve performance of `ExportMap.for` by only loading paths when necessary. ([#1519], thanks [@brendo])
25- Support export of a merged TypeScript namespace declaration ([#1495], thanks [@benmunro])
26- [`order`]: fix autofix to not move imports across fn calls ([#1253], thanks [@tihonove])
27- [`prefer-default-export`]: fix false positive with type export ([#1506], thanks [@golopot])
28- [`extensions`]: Fix `ignorePackages` to produce errors ([#1521], thanks [@saschanaz])
29- [`no-unused-modules`]: fix crash due to `export *` ([#1496], thanks [@Taranys])
30- [`no-cycle`]: should not warn for Flow imports ([#1494], thanks [@maxmalov])
31- [`order`]: fix `@someModule` considered as `unknown` instead of `internal` ([#1493], thanks [@aamulumi])
32- [`no-extraneous-dependencies`]: Check `export from` ([#1049], thanks [@marcusdarmstrong])
33
34### Docs
35- [`no-useless-path-segments`]: add docs for option `commonjs` ([#1507], thanks [@golopot])
36
37### Changed
38- [`no-unused-modules`]/`eslint-module-utils`: Avoid superfluous calls and code ([#1551], thanks [@brettz9])
39
40## [2.18.2] - 2019-07-19
41### Fixed
42- Skip warning on type interfaces ([#1425], thanks [@lencioni])
43
44## [2.18.1] - 2019-07-18
45### Fixed
46- Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher])
47- [`prefer-default-export`]: don't warn on TypeAlias & TSTypeAliasDeclaration ([#1377], thanks [@sharmilajesupaul])
48- [`no-unused-modules`]: Exclude package "main"/"bin"/"browser" entry points ([#1404], thanks [@rfermann])
49- [`export`]: false positive for TypeScript overloads ([#1412], thanks [@golopot])
50
51### Refactors
52- [`no-extraneous-dependencies`], `importType`: remove lodash ([#1419], thanks [@ljharb])
53
54## [2.18.0] - 2019-06-24
55### Added
56- Support eslint v6 ([#1393], thanks [@sheepsteak])
57- [`order`]: Adds support for correctly sorting unknown types into a single group ([#1375], thanks [@swernerx])
58- [`order`]: add fixer for destructuring commonjs import ([#1372], thanks [@golopot])
59- TypeScript config: add TS def extensions + defer to TS over JS ([#1366], thanks [@benmosher])
60
61### Fixed
62- [`no-unused-modules`]: handle ClassDeclaration ([#1371], thanks [@golopot])
63
64### Docs
65- [`no-cycle`]: split code examples so file separation is obvious ([#1370], thanks [@alex-page])
66- [`no-named-as-default-member`]: update broken link ([#1389], thanks [@fooloomanzoo])
67
68## [2.17.3] - 2019-05-23
69### Fixed
70- [`no-common-js`]: Also throw an error when assigning ([#1354], thanks [@charlessuh])
71- [`no-unused-modules`]: don't crash when lint file outside src-folder ([#1347], thanks [@rfermann])
72- [`no-unused-modules`]: make `import { name as otherName }` work ([#1340], [#1342], thanks [@rfermann])
73- [`no-unused-modules`]: make appveyor tests passing ([#1333], thanks [@rfermann])
74- [`named`]: ignore Flow `typeof` imports and `type` exports ([#1345], thanks [@loganfsmyth])
75- [refactor] fix eslint 6 compat by fixing imports (thank [@ljharb])
76- Improve support for TypeScript declare structures ([#1356], thanks [@christophercurrie])
77
78### Docs
79- add missing `no-unused-modules` in README ([#1358], thanks [@golopot])
80- [`no-unused-modules`]: Indicates usage, plugin defaults to no-op, and add description to main README.md ([#1352], thanks [@johndevedu])
81- Document `env` option for `eslint-import-resolver-webpack` ([#1363], thanks [@kgregory])
82
83## [2.17.2] - 2019-04-16
84### Fixed
85- [`no-unused-modules`]: avoid crash when using `ignoreExports`-option ([#1331], [#1323], thanks [@rfermann])
86- [`no-unused-modules`]: make sure that rule with no options will not fail ([#1330], [#1334], thanks [@kiwka])
87
88## [2.17.1] - 2019-04-13
89### Fixed
90- require v2.4 of `eslint-module-utils` ([#1322])
91
92## [2.17.0] - 2019-04-13
93### Added
94- [`no-useless-path-segments`]: Add `noUselessIndex` option ([#1290], thanks [@timkraut])
95- [`no-duplicates`]: Add autofix ([#1312], thanks [@lydell])
96- Add [`no-unused-modules`] rule ([#1142], thanks [@rfermann])
97- support export type named exports from TypeScript ([#1304], thanks [@bradennapier] and [@schmod])
98
99### Fixed
100- [`order`]: Fix interpreting some external modules being interpreted as internal modules ([#793], [#794] thanks [@ephys])
101- allow aliases that start with @ to be "internal" ([#1293], [#1294], thanks [@jeffshaver])
102- aliased internal modules that look like core modules ([#1297], thanks [@echenley])
103- [`namespace`]: add check for null ExportMap ([#1235], [#1144], thanks [@ljqx])
104- [ExportMap] fix condition for checking if block comment ([#1234], [#1233], thanks [@ljqx])
105- Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-import`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
106- [`export`]: false positives for TypeScript type + value export ([#1319], thanks [@bradzacher])
107- [`export`]: Support TypeScript namespaces ([#1320], [#1300], thanks [@bradzacher])
108
109### Docs
110- Update readme for TypeScript ([#1256], [#1277], thanks [@kirill-konshin])
111- make rule names consistent ([#1112], thanks [@feychenie])
112
113### Tests
114- fix broken tests on master ([#1295], thanks [@jeffshaver] and [@ljharb])
115- [`no-commonjs`]: add tests that show corner cases ([#1308], thanks [@TakeScoop])
116
117## [2.16.0] - 2019-01-29
118### Added
119- `typescript` config ([#1257], thanks [@kirill-konshin])
120
121### Fixed
122- Memory leak of `SourceCode` objects for all parsed dependencies, resolved. (issue [#1266], thanks [@asapach] and [@sergei-startsev] for digging in)
123
124## [2.15.0] - 2019-01-22
125### Added
126- new rule: [`no-named-export`] ([#1157], thanks [@fsmaia])
127
128### Fixed
129- [`no-extraneous-dependencies`]: `packageDir` option with array value was clobbering package deps instead of merging them ([#1175]/[#1176], thanks [@aravindet] & [@pzhine])
130- [`dynamic-import-chunkname`]: Add proper webpack comment parsing ([#1163], thanks [@st-sloth])
131- [`named`]: fix destructuring assignment ([#1232], thanks [@ljqx])
132
133## [2.14.0] - 2018-08-13
134### Added
135- [`no-useless-path-segments`]: add commonJS (CJS) support ([#1128], thanks [@1pete])
136- [`namespace`]: add JSX check ([#1151], thanks [@jf248])
137
138### Fixed
139- [`no-cycle`]: ignore Flow imports ([#1126], thanks [@gajus])
140- fix Flow type imports ([#1106], thanks [@syymza])
141- [`no-relative-parent-imports`]: resolve paths ([#1135], thanks [@chrislloyd])
142- [`order`]: fix autofixer when using typescript-eslint-parser ([#1137], thanks [@justinanastos])
143- repeat fix from [#797] for [#717], in another place (thanks [@ljharb])
144
145### Refactors
146- add explicit support for RestElement alongside ExperimentalRestProperty (thanks [@ljharb])
147
148## [2.13.0] - 2018-06-24
149### Added
150- Add ESLint 5 support ([#1122], thanks [@ai] and [@ljharb])
151- Add [`no-relative-parent-imports`] rule: disallow relative imports from parent directories ([#1093], thanks [@chrislloyd])
152
153### Fixed
154- `namespace` rule: ensure it works in eslint 5/ecmaVersion 2018 (thanks [@ljharb])
155
156## [2.12.0] - 2018-05-17
157### Added
158- Ignore type imports for [`named`] rule ([#931], thanks [@mattijsbliek])
159- Add documentation for [`no-useless-path-segments`] rule ([#1068], thanks [@manovotny])
160- `packageDir` option for [`no-extraneous-dependencies`] can be array-valued ([#1085], thanks [@hulkish])
161
162## [2.11.0] - 2018-04-09
163### Added
164- Fixer for [`first`] ([#1046], thanks [@fengkfengk])
165- `allow-require` option for [`no-commonjs`] rule ([#880], thanks [@futpib])
166
167### Fixed
168- memory/CPU regression where ASTs were held in memory ([#1058], thanks [@klimashkin]/[@lukeapage])
169
170## [2.10.0] - 2018-03-29
171### Added
172- Autofixer for [`order`] rule ([#908], thanks [@tihonove])
173- Add [`no-cycle`] rule: reports import cycles.
174
175## [2.9.0] - 2018-02-21
176### Added
177- Add [`group-exports`] rule: style-guide rule to report use of multiple named exports ([#721], thanks [@robertrossmann])
178- Add [`no-self-import`] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [@giodamelio]).
179- Add [`no-default-export`] rule ([#889], thanks [@isiahmeadows])
180- Add [`no-useless-path-segments`] rule ([#912], thanks [@graingert] and [@danny-andrews])
181- ... and more! check the commits for v[2.9.0]
182
183## [2.8.0] - 2017-10-18
184### Added
185- [`exports-last`] rule ([#620] + [#632], thanks [@k15a])
186
187### Changed
188- Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [@laysent])
189
190### Fixed
191- support scoped modules containing hyphens ([#744], thanks [@rosswarren])
192- core-modules now resolves files inside declared modules ([#886] / [#891], thanks [@mplewis])
193- TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [@alexgorbatchev])
194
195## [2.7.0] - 2017-07-06
196### Changed
197- [`no-absolute-path`] picks up speed boost, optional AMD support ([#843], thanks [@jseminck])
198
199## [2.6.1] - 2017-06-29
200### Fixed
201- update bundled node resolver dependency to latest version
202
203## [2.6.0] - 2017-06-23
204### Changed
205- update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [@mastilver])
206- [`memo-parser`] updated to require `filePath` on parser options as it melts
207 down if it's not there, now that this plugin always provides it. (see [#863])
208
209## [2.5.0] - 2017-06-22
210
211Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [`memo-parser`],
212which is more or less experimental anyway.
213
214### Added
215- Autofixer for newline-after-import. ([#686] + [#696], thanks [@eelyafi])
216
217## [2.4.0] - 2017-06-02 [YANKED]
218
219Yanked due to critical issue in eslint-module-utils with cache key resulting from [#839].
220
221### Added
222- Add `filePath` into `parserOptions` passed to `parser` ([#839], thanks [@sompylasar])
223- Add `allow` option to [`no-unassigned-import`] to allow for files that match the globs ([#671], [#737], thanks [@kevin940726]).
224
225## [2.3.0] - 2017-05-18
226### Added
227- [`no-anonymous-default-export`] rule: report anonymous default exports ([#712], thanks [@duncanbeevers]).
228- Add new value to [`order`]'s `newlines-between` option to allow newlines inside import groups ([#627], [#628], thanks [@giodamelio])
229- Add `count` option to the [`newline-after-import`] rule to allow configuration of number of newlines expected ([#742], thanks [@ntdb])
230
231### Changed
232- [`no-extraneous-dependencies`]: use `read-pkg-up` to simplify finding + loading `package.json` ([#680], thanks [@wtgtybhertgeghgtwtg])
233- Add support to specify the package.json [`no-extraneous-dependencies`] ([#685], thanks [@ramasilveyra])
234
235### Fixed
236- attempt to fix crash in [`no-mutable-exports`]. ([#660])
237- "default is a reserved keyword" in no-maned-default tests by locking down babylon to 6.15.0 (#756, thanks @gmathieu)
238- support scoped modules containing non word characters
239
240
241## [2.2.0] - 2016-11-07
242### Fixed
243- Corrected a few gaffs in the auto-ignore logic to fix major performance issues
244 with projects that did not explicitly ignore `node_modules`. ([#654])
245- [`import/ignore` setting] was only being respected if the ignored module didn't start with
246 an `import` or `export` JS statement
247- [`prefer-default-export`]: fixed crash on export extensions ([#653])
248
249## [2.1.0] - 2016-11-02
250### Added
251- Add [`no-named-default`] rule: style-guide rule to report use of unnecessarily named default imports ([#596], thanks [@ntdb])
252- [`no-extraneous-dependencies`]: check globs against CWD + absolute path ([#602] + [#630], thanks [@ljharb])
253
254### Fixed
255- [`prefer-default-export`] handles flow `export type` ([#484] + [#639], thanks [@jakubsta])
256- [`prefer-default-export`] handles re-exported default exports ([#609])
257- Fix crash when using [`newline-after-import`] with decorators ([#592])
258- Properly report [`newline-after-import`] when next line is a decorator
259- Fixed documentation for the default values for the [`order`] rule ([#601])
260
261## [2.0.1] - 2016-10-06
262### Fixed
263- Fixed code that relied on removed dependencies. ([#604])
264
265## [2.0.0]! - 2016-09-30
266### Added
267- [`unambiguous`] rule: report modules that are not unambiguously ES modules.
268- `recommended` shared config. Roughly `errors` and `warnings` mixed together,
269 with some `parserOptions` in the mix. ([#402])
270- `react` shared config: added `jsx: true` to `parserOptions.ecmaFeatures`.
271- Added [`no-webpack-loader-syntax`] rule: forbid custom Webpack loader syntax in imports. ([#586], thanks [@fson]!)
272- Add option `newlines-between: "ignore"` to [`order`] ([#519])
273- Added [`no-unassigned-import`] rule ([#529])
274
275### Breaking
276- [`import/extensions` setting] defaults to `['.js']`. ([#306])
277- [`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])
278- [`newline-after-import`]: Removed need for an empty line after an inline `require` call ([#570])
279- [`order`]: Default value for `newlines-between` option is now `ignore` ([#519])
280
281### Changed
282- `imports-first` is renamed to [`first`]. `imports-first` alias will continue to
283 exist, but may be removed in a future major release.
284- Case-sensitivity: now specifically (and optionally) reported by [`no-unresolved`].
285 Other rules will ignore case-mismatches on paths on case-insensitive filesystems. ([#311])
286
287### Fixed
288- [`no-internal-modules`]: support `@`-scoped packages ([#577]+[#578], thanks [@spalger])
289
290## [1.16.0] - 2016-09-22
291### Added
292- Added [`no-dynamic-require`] rule: forbid `require()` calls with expressions. ([#567], [#568])
293- Added [`no-internal-modules`] rule: restrict deep package imports to specific folders. ([#485], thanks [@spalger]!)
294- [`extensions`]: allow override of a chosen default with options object ([#555], thanks [@ljharb]!)
295
296### Fixed
297- [`no-named-as-default`] no longer false-positives on `export default from '...'` ([#566], thanks [@preco21])
298- [`default`]: allow re-export of values from ignored files as default ([#545], thanks [@skyrpex])
299
300## [1.15.0] - 2016-09-12
301### Added
302- Added an `allow` option to [`no-nodejs-modules`] to allow exceptions ([#452], [#509]).
303- Added [`no-absolute-path`] rule ([#530], [#538])
304- [`max-dependencies`] for specifying the maximum number of dependencies (both `import` and `require`) a module can have. (see [#489], thanks [@tizmagik])
305- Added glob option to config for [`no-extraneous-dependencies`], after much bikeshedding. Thanks, [@knpwrs]! ([#527])
306
307### Fixed
308- [`no-named-as-default-member`] Allow default import to have a property named "default" ([#507], [#508], thanks [@jquense] for both!)
309
310## [1.14.0] - 2016-08-22
311### Added
312- [`import/parsers` setting]: parse some dependencies (i.e. TypeScript!) with a different parser than the ESLint-configured parser. ([#503])
313
314### Fixed
315- [`namespace`] exception for get property from `namespace` import, which are re-export from commonjs module ([#499] fixes [#416], thanks [@wKich])
316
317## [1.13.0] - 2016-08-11
318### Added
319- `allowComputed` option for [`namespace`] rule. If set to `true`, won't report
320 computed member references to namespaces. (see [#456])
321
322### Changed
323- Modified [`no-nodejs-modules`] error message to include the module's name ([#453], [#461])
324
325### Fixed
326- [`import/extensions` setting] is respected in spite of the appearance of imports
327 in an imported file. (fixes [#478], thanks [@rhys-vdw])
328
329## [1.12.0] - 2016-07-26
330### Added
331- [`import/external-module-folders` setting]: a possibility to configure folders for "external" modules ([#444], thanks [@zloirock])
332
333## [1.11.1] - 2016-07-20
334### Fixed
335- [`newline-after-import`] exception for `switch` branches with `require`s iff parsed as `sourceType:'module'`.
336 (still [#441], thanks again [@ljharb])
337
338## [1.11.0] - 2016-07-17
339### Added
340- Added an `peerDependencies` option to [`no-extraneous-dependencies`] to allow/forbid peer dependencies ([#423], [#428], thanks [@jfmengels]!).
341
342### Fixed
343- [`newline-after-import`] exception for multiple `require`s in an arrow
344 function expression (e.g. `() => require('a') || require('b')`). ([#441], thanks [@ljharb])
345
346## [1.10.3] - 2016-07-08
347### Fixed
348- removing `Symbol` dependencies (i.e. `for-of` loops) due to Node 0.10 polyfill
349 issue (see [#415]). Should not make any discernible semantic difference.
350
351## [1.10.2] - 2016-07-04
352### Fixed
353- Something horrible happened during `npm prepublish` of 1.10.1.
354 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!
355
356## [1.10.1] - 2016-07-02 [YANKED]
357### Added
358- Officially support ESLint 3.x. (peerDependencies updated to `2.x - 3.x`)
359
360## [1.10.0] - 2016-06-30
361### Added
362- Added new rule [`no-restricted-paths`]. ([#155]/[#371], thanks [@lo1tuma])
363- [`import/core-modules` setting]: allow configuration of additional module names,
364 to be treated as builtin modules (a la `path`, etc. in Node). ([#275] + [#365], thanks [@sindresorhus] for driving)
365- React Native shared config (based on comment from [#283])
366
367### Fixed
368- Fixed crash with `newline-after-import` related to the use of switch cases. (fixes [#386], thanks [@ljharb] for reporting) ([#395])
369
370## [1.9.2] - 2016-06-21
371### Fixed
372- Issues with ignored/CJS files in [`export`] and [`no-deprecated`] rules. ([#348], [#370])
373
374## [1.9.1] - 2016-06-16
375### Fixed
376- Reordered precedence for loading resolvers. ([#373])
377
378## [1.9.0] - 2016-06-10
379### Added
380- Added support TomDoc comments to [`no-deprecated`]. ([#321], thanks [@josh])
381- Added support for loading custom resolvers ([#314], thanks [@le0nik])
382
383### Fixed
384- [`prefer-default-export`] handles `export function` and `export const` in same file ([#359], thanks [@scottnonnenberg])
385
386## [1.8.1] - 2016-05-23
387### Fixed
388- `export * from 'foo'` now properly ignores a `default` export from `foo`, if any. ([#328]/[#332], thanks [@jkimbo])
389 This impacts all static analysis of imported names. ([`default`], [`named`], [`namespace`], [`export`])
390- Make [`order`]'s `newline-between` option handle multiline import statements ([#313], thanks [@singles])
391- Make [`order`]'s `newline-between` option handle not assigned import statements ([#313], thanks [@singles])
392- Make [`order`]'s `newline-between` option ignore `require` statements inside object literals ([#313], thanks [@singles])
393- [`prefer-default-export`] properly handles deep destructuring, `export * from ...`, and files with no exports. ([#342]+[#343], thanks [@scottnonnenberg])
394
395## [1.8.0] - 2016-05-11
396### Added
397- [`prefer-default-export`], new rule. ([#308], thanks [@gavriguy])
398
399### Fixed
400- Ignore namespace / ES7 re-exports in [`no-mutable-exports`]. ([#317], fixed by [#322]. thanks [@borisyankov] + [@jfmengels])
401- Make [`no-extraneous-dependencies`] handle scoped packages ([#316], thanks [@jfmengels])
402
403## [1.7.0] - 2016-05-06
404### Added
405- [`newline-after-import`], new rule. ([#245], thanks [@singles])
406- Added an `optionalDependencies` option to [`no-extraneous-dependencies`] to allow/forbid optional dependencies ([#266], thanks [@jfmengels]).
407- Added `newlines-between` option to [`order`] rule ([#298], thanks [@singles])
408- add [`no-mutable-exports`] rule ([#290], thanks [@josh])
409- [`import/extensions` setting]: a list of file extensions to parse as modules
410 and search for `export`s. If unspecified, all extensions are considered valid (for now).
411 In v2, this will likely default to `['.js', MODULE_EXT]`. ([#297], to fix [#267])
412
413### Fixed
414- [`extensions`]: fallback to source path for extension enforcement if imported
415 module is not resolved. Also, never report for builtins (i.e. `path`). ([#296])
416
417## [1.6.1] - 2016-04-28
418### Fixed
419- [`no-named-as-default-member`]: don't crash on rest props. ([#281], thanks [@SimenB])
420- support for Node 6: don't pass `null` to `path` functions.
421 Thanks to [@strawbrary] for bringing this up ([#272]) and adding OSX support to the Travis
422 config ([#288]).
423
424## [1.6.0] - 2016-04-25
425### Added
426- add [`no-named-as-default-member`] to `warnings` canned config
427- add [`no-extraneous-dependencies`] rule ([#241], thanks [@jfmengels])
428- add [`extensions`] rule ([#250], thanks [@lo1tuma])
429- add [`no-nodejs-modules`] rule ([#261], thanks [@jfmengels])
430- add [`order`] rule ([#247], thanks [@jfmengels])
431- consider `resolve.fallback` config option in the webpack resolver ([#254])
432
433### Changed
434- [`imports-first`] now allows directives (i.e. `'use strict'`) strictly before
435 any imports ([#256], thanks [@lemonmade])
436
437### Fixed
438- [`named`] now properly ignores the source module if a name is re-exported from
439 an ignored file (i.e. `node_modules`). Also improved the reported error. (thanks to [@jimbolla] for reporting)
440- [`no-named-as-default-member`] had a crash on destructuring in loops (thanks for heads up from [@lemonmade])
441
442## [1.5.0] - 2016-04-18
443### Added
444- report resolver errors at the top of the linted file
445- add [`no-namespace`] rule ([#239], thanks [@singles])
446- add [`no-named-as-default-member`] rule ([#243], thanks [@dmnd])
447
448### Changed
449- Rearranged rule groups in README in preparation for more style guide rules
450
451### Removed
452- support for Node 0.10, via `es6-*` ponyfills. Using native Map/Set/Symbol.
453
454## [1.4.0] - 2016-03-25
455### Added
456- Resolver plugin interface v2: more explicit response format that more clearly covers the found-but-core-module case, where there is no path.
457 Still backwards-compatible with the original version of the resolver spec.
458- [Resolver documentation](./resolvers/README.md)
459
460### Changed
461- using `package.json/files` instead of `.npmignore` for package file inclusion ([#228], thanks [@mathieudutour])
462- using `es6-*` ponyfills instead of `babel-runtime`
463
464## [1.3.0] - 2016-03-20
465Major perf improvements. Between parsing only once and ignoring gigantic, non-module `node_modules`,
466there is very little added time.
467
468My test project takes 17s to lint completely, down from 55s, when using the
469memoizing parser, and takes only 27s with naked `babel-eslint` (thus, reparsing local modules).
470
471### Added
472- This change log ([#216])
473- Experimental memoizing [parser](./memo-parser/README.md)
474
475### Fixed
476- Huge reduction in execution time by _only_ ignoring [`import/ignore` setting] if
477 something that looks like an `export` is detected in the module content.
478
479## [1.2.0] - 2016-03-19
480Thanks [@lencioni] for identifying a huge amount of rework in resolve and kicking
481off a bunch of memoization.
482
483I'm seeing 62% improvement over my normal test codebase when executing only
484[`no-unresolved`] in isolation, and ~35% total reduction in lint time.
485
486### Changed
487- added caching to core/resolve via [#214], configured via [`import/cache` setting]
488
489## [1.1.0] - 2016-03-15
490### Added
491- 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.
492
493## [1.0.4] - 2016-03-11
494
495### Changed
496- respect hoisting for deep namespaces ([`namespace`]/[`no-deprecated`]) ([#211])
497
498### Fixed
499- don't crash on self references ([#210])
500- correct cache behavior in `eslint_d` for deep namespaces ([#200])
501
502## [1.0.3] - 2016-02-26
503
504### Changed
505- no-deprecated follows deep namespaces ([#191])
506
507### Fixed
508- [`namespace`] no longer flags modules with only a default export as having no names. (ns.default is valid ES6)
509
510## [1.0.2] - 2016-02-26
511
512### Fixed
513- don't parse imports with no specifiers ([#192])
514
515## [1.0.1] - 2016-02-25
516
517### Fixed
518- export `stage-0` shared config
519- documented [`no-deprecated`]
520- deep namespaces are traversed regardless of how they get imported ([#189])
521
522## [1.0.0] - 2016-02-24
523
524### Added
525- [`no-deprecated`]: WIP rule to let you know at lint time if you're using deprecated functions, constants, classes, or modules.
526
527### Changed
528- [`namespace`]: support deep namespaces ([#119] via [#157])
529
530## [1.0.0-beta.0] - 2016-02-13
531
532### Changed
533- support for (only) ESLint 2.x
534- 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.
535
536### Removed
537
538- `babylon` as default import parser (see Breaking)
539
540## [0.13.0] - 2016-02-08
541### Added
542- [`no-commonjs`] rule
543- [`no-amd`] rule
544
545### Removed
546- Removed vestigial `no-require` rule. [`no-commonjs`] is more complete.
547
548## [0.12.2] - 2016-02-06 [YANKED]
549Unpublished from npm and re-released as 0.13.0. See [#170].
550
551## [0.12.1] - 2015-12-17
552### Changed
553- Broke docs for rules out into individual files.
554
555## [0.12.0] - 2015-12-14
556### Changed
557- 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.
558
559## [0.11.0] - 2015-11-27
560### Added
561- Resolver plugins. Now the linter can read Webpack config, properly follow aliases and ignore externals, dismisses inline loaders, etc. etc.!
562
563## Earlier releases (0.10.1 and younger)
564See [GitHub release notes](https://github.com/benmosher/eslint-plugin-import/releases?after=v0.11.0)
565for info on changes for earlier releases.
566
567
568[`import/cache` setting]: ./README.md#importcache
569[`import/ignore` setting]: ./README.md#importignore
570[`import/extensions` setting]: ./README.md#importextensions
571[`import/parsers` setting]: ./README.md#importparsers
572[`import/core-modules` setting]: ./README.md#importcore-modules
573[`import/external-module-folders` setting]: ./README.md#importexternal-module-folders
574
575[`default`]: ./docs/rules/default.md
576[`dynamic-import-chunkname`]: ./docs/rules/dynamic-import-chunkname.md
577[`export`]: ./docs/rules/export.md
578[`exports-last`]: ./docs/rules/exports-last.md
579[`extensions`]: ./docs/rules/extensions.md
580[`first`]: ./docs/rules/first.md
581[`group-exports`]: ./docs/rules/group-exports.md
582[`imports-first`]: ./docs/rules/first.md
583[`max-dependencies`]: ./docs/rules/max-dependencies.md
584[`named`]: ./docs/rules/named.md
585[`namespace`]: ./docs/rules/namespace.md
586[`newline-after-import`]: ./docs/rules/newline-after-import.md
587[`no-absolute-path`]: ./docs/rules/no-absolute-path.md
588[`no-amd`]: ./docs/rules/no-amd.md
589[`no-anonymous-default-export`]: ./docs/rules/no-anonymous-default-export.md
590[`no-commonjs`]: ./docs/rules/no-commonjs.md
591[`no-cycle`]: ./docs/rules/no-cycle.md
592[`no-default-export`]: ./docs/rules/no-default-export.md
593[`no-deprecated`]: ./docs/rules/no-deprecated.md
594[`no-duplicates`]: ./docs/rules/no-duplicates.md
595[`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md
596[`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md
597[`no-internal-modules`]: ./docs/rules/no-internal-modules.md
598[`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md
599[`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md
600[`no-named-as-default`]: ./docs/rules/no-named-as-default.md
601[`no-named-default`]: ./docs/rules/no-named-default.md
602[`no-named-export`]: ./docs/rules/no-named-export.md
603[`no-namespace`]: ./docs/rules/no-namespace.md
604[`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md
605[`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md
606[`no-self-import`]: ./docs/rules/no-self-import.md
607[`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md
608[`no-unresolved`]: ./docs/rules/no-unresolved.md
609[`no-unused-modules`]: ./docs/rules/no-unused-modules.md
610[`no-useless-path-segments`]: ./docs/rules/no-useless-path-segments.md
611[`no-webpack-loader-syntax`]: ./docs/rules/no-webpack-loader-syntax.md
612[`order`]: ./docs/rules/order.md
613[`prefer-default-export`]: ./docs/rules/prefer-default-export.md
614[`unambiguous`]: ./docs/rules/unambiguous.md
615
616[`memo-parser`]: ./memo-parser/README.md
617
618[#1551]: https://github.com/benmosher/eslint-plugin-import/pull/1551
619[#1542]: https://github.com/benmosher/eslint-plugin-import/pull/1542
620[#1521]: https://github.com/benmosher/eslint-plugin-import/pull/1521
621[#1519]: https://github.com/benmosher/eslint-plugin-import/pull/1519
622[#1507]: https://github.com/benmosher/eslint-plugin-import/pull/1507
623[#1506]: https://github.com/benmosher/eslint-plugin-import/pull/1506
624[#1496]: https://github.com/benmosher/eslint-plugin-import/pull/1496
625[#1495]: https://github.com/benmosher/eslint-plugin-import/pull/1495
626[#1494]: https://github.com/benmosher/eslint-plugin-import/pull/1494
627[#1493]: https://github.com/benmosher/eslint-plugin-import/pull/1493
628[#1472]: https://github.com/benmosher/eslint-plugin-import/pull/1472
629[#1470]: https://github.com/benmosher/eslint-plugin-import/pull/1470
630[#1439]: https://github.com/benmosher/eslint-plugin-import/pull/1439
631[#1436]: https://github.com/benmosher/eslint-plugin-import/pull/1436
632[#1435]: https://github.com/benmosher/eslint-plugin-import/pull/1435
633[#1425]: https://github.com/benmosher/eslint-plugin-import/pull/1425
634[#1419]: https://github.com/benmosher/eslint-plugin-import/pull/1419
635[#1412]: https://github.com/benmosher/eslint-plugin-import/pull/1412
636[#1409]: https://github.com/benmosher/eslint-plugin-import/pull/1409
637[#1404]: https://github.com/benmosher/eslint-plugin-import/pull/1404
638[#1401]: https://github.com/benmosher/eslint-plugin-import/pull/1401
639[#1393]: https://github.com/benmosher/eslint-plugin-import/pull/1393
640[#1389]: https://github.com/benmosher/eslint-plugin-import/pull/1389
641[#1386]: https://github.com/benmosher/eslint-plugin-import/pull/1386
642[#1377]: https://github.com/benmosher/eslint-plugin-import/pull/1377
643[#1375]: https://github.com/benmosher/eslint-plugin-import/pull/1375
644[#1372]: https://github.com/benmosher/eslint-plugin-import/pull/1372
645[#1371]: https://github.com/benmosher/eslint-plugin-import/pull/1371
646[#1370]: https://github.com/benmosher/eslint-plugin-import/pull/1370
647[#1363]: https://github.com/benmosher/eslint-plugin-import/pull/1363
648[#1360]: https://github.com/benmosher/eslint-plugin-import/pull/1360
649[#1358]: https://github.com/benmosher/eslint-plugin-import/pull/1358
650[#1356]: https://github.com/benmosher/eslint-plugin-import/pull/1356
651[#1354]: https://github.com/benmosher/eslint-plugin-import/pull/1354
652[#1352]: https://github.com/benmosher/eslint-plugin-import/pull/1352
653[#1347]: https://github.com/benmosher/eslint-plugin-import/pull/1347
654[#1345]: https://github.com/benmosher/eslint-plugin-import/pull/1345
655[#1342]: https://github.com/benmosher/eslint-plugin-import/pull/1342
656[#1340]: https://github.com/benmosher/eslint-plugin-import/pull/1340
657[#1333]: https://github.com/benmosher/eslint-plugin-import/pull/1333
658[#1331]: https://github.com/benmosher/eslint-plugin-import/pull/1331
659[#1330]: https://github.com/benmosher/eslint-plugin-import/pull/1330
660[#1320]: https://github.com/benmosher/eslint-plugin-import/pull/1320
661[#1319]: https://github.com/benmosher/eslint-plugin-import/pull/1319
662[#1312]: https://github.com/benmosher/eslint-plugin-import/pull/1312
663[#1308]: https://github.com/benmosher/eslint-plugin-import/pull/1308
664[#1304]: https://github.com/benmosher/eslint-plugin-import/pull/1304
665[#1297]: https://github.com/benmosher/eslint-plugin-import/pull/1297
666[#1295]: https://github.com/benmosher/eslint-plugin-import/pull/1295
667[#1294]: https://github.com/benmosher/eslint-plugin-import/pull/1294
668[#1290]: https://github.com/benmosher/eslint-plugin-import/pull/1290
669[#1277]: https://github.com/benmosher/eslint-plugin-import/pull/1277
670[#1257]: https://github.com/benmosher/eslint-plugin-import/pull/1257
671[#1253]: https://github.com/benmosher/eslint-plugin-import/pull/1253
672[#1235]: https://github.com/benmosher/eslint-plugin-import/pull/1235
673[#1234]: https://github.com/benmosher/eslint-plugin-import/pull/1234
674[#1232]: https://github.com/benmosher/eslint-plugin-import/pull/1232
675[#1218]: https://github.com/benmosher/eslint-plugin-import/pull/1218
676[#1176]: https://github.com/benmosher/eslint-plugin-import/pull/1176
677[#1163]: https://github.com/benmosher/eslint-plugin-import/pull/1163
678[#1157]: https://github.com/benmosher/eslint-plugin-import/pull/1157
679[#1151]: https://github.com/benmosher/eslint-plugin-import/pull/1151
680[#1142]: https://github.com/benmosher/eslint-plugin-import/pull/1142
681[#1137]: https://github.com/benmosher/eslint-plugin-import/pull/1137
682[#1135]: https://github.com/benmosher/eslint-plugin-import/pull/1135
683[#1128]: https://github.com/benmosher/eslint-plugin-import/pull/1128
684[#1126]: https://github.com/benmosher/eslint-plugin-import/pull/1126
685[#1122]: https://github.com/benmosher/eslint-plugin-import/pull/1122
686[#1112]: https://github.com/benmosher/eslint-plugin-import/pull/1112
687[#1107]: https://github.com/benmosher/eslint-plugin-import/pull/1107
688[#1106]: https://github.com/benmosher/eslint-plugin-import/pull/1106
689[#1105]: https://github.com/benmosher/eslint-plugin-import/pull/1105
690[#1093]: https://github.com/benmosher/eslint-plugin-import/pull/1093
691[#1085]: https://github.com/benmosher/eslint-plugin-import/pull/1085
692[#1068]: https://github.com/benmosher/eslint-plugin-import/pull/1068
693[#1049]: https://github.com/benmosher/eslint-plugin-import/pull/1049
694[#1046]: https://github.com/benmosher/eslint-plugin-import/pull/1046
695[#944]: https://github.com/benmosher/eslint-plugin-import/pull/944
696[#912]: https://github.com/benmosher/eslint-plugin-import/pull/912
697[#908]: https://github.com/benmosher/eslint-plugin-import/pull/908
698[#891]: https://github.com/benmosher/eslint-plugin-import/pull/891
699[#889]: https://github.com/benmosher/eslint-plugin-import/pull/889
700[#880]: https://github.com/benmosher/eslint-plugin-import/pull/880
701[#871]: https://github.com/benmosher/eslint-plugin-import/pull/871
702[#858]: https://github.com/benmosher/eslint-plugin-import/pull/858
703[#843]: https://github.com/benmosher/eslint-plugin-import/pull/843
704[#797]: https://github.com/benmosher/eslint-plugin-import/pull/797
705[#794]: https://github.com/benmosher/eslint-plugin-import/pull/794
706[#744]: https://github.com/benmosher/eslint-plugin-import/pull/744
707[#742]: https://github.com/benmosher/eslint-plugin-import/pull/742
708[#737]: https://github.com/benmosher/eslint-plugin-import/pull/737
709[#727]: https://github.com/benmosher/eslint-plugin-import/pull/727
710[#721]: https://github.com/benmosher/eslint-plugin-import/pull/721
711[#712]: https://github.com/benmosher/eslint-plugin-import/pull/712
712[#696]: https://github.com/benmosher/eslint-plugin-import/pull/696
713[#685]: https://github.com/benmosher/eslint-plugin-import/pull/685
714[#680]: https://github.com/benmosher/eslint-plugin-import/pull/680
715[#654]: https://github.com/benmosher/eslint-plugin-import/pull/654
716[#639]: https://github.com/benmosher/eslint-plugin-import/pull/639
717[#632]: https://github.com/benmosher/eslint-plugin-import/pull/632
718[#630]: https://github.com/benmosher/eslint-plugin-import/pull/630
719[#629]: https://github.com/benmosher/eslint-plugin-import/pull/629
720[#628]: https://github.com/benmosher/eslint-plugin-import/pull/628
721[#596]: https://github.com/benmosher/eslint-plugin-import/pull/596
722[#586]: https://github.com/benmosher/eslint-plugin-import/pull/586
723[#578]: https://github.com/benmosher/eslint-plugin-import/pull/578
724[#568]: https://github.com/benmosher/eslint-plugin-import/pull/568
725[#555]: https://github.com/benmosher/eslint-plugin-import/pull/555
726[#538]: https://github.com/benmosher/eslint-plugin-import/pull/538
727[#527]: https://github.com/benmosher/eslint-plugin-import/pull/527
728[#509]: https://github.com/benmosher/eslint-plugin-import/pull/509
729[#508]: https://github.com/benmosher/eslint-plugin-import/pull/508
730[#503]: https://github.com/benmosher/eslint-plugin-import/pull/503
731[#499]: https://github.com/benmosher/eslint-plugin-import/pull/499
732[#489]: https://github.com/benmosher/eslint-plugin-import/pull/489
733[#485]: https://github.com/benmosher/eslint-plugin-import/pull/485
734[#461]: https://github.com/benmosher/eslint-plugin-import/pull/461
735[#449]: https://github.com/benmosher/eslint-plugin-import/pull/449
736[#444]: https://github.com/benmosher/eslint-plugin-import/pull/444
737[#428]: https://github.com/benmosher/eslint-plugin-import/pull/428
738[#395]: https://github.com/benmosher/eslint-plugin-import/pull/395
739[#371]: https://github.com/benmosher/eslint-plugin-import/pull/371
740[#365]: https://github.com/benmosher/eslint-plugin-import/pull/365
741[#359]: https://github.com/benmosher/eslint-plugin-import/pull/359
742[#343]: https://github.com/benmosher/eslint-plugin-import/pull/343
743[#332]: https://github.com/benmosher/eslint-plugin-import/pull/332
744[#322]: https://github.com/benmosher/eslint-plugin-import/pull/322
745[#321]: https://github.com/benmosher/eslint-plugin-import/pull/321
746[#316]: https://github.com/benmosher/eslint-plugin-import/pull/316
747[#314]: https://github.com/benmosher/eslint-plugin-import/pull/314
748[#308]: https://github.com/benmosher/eslint-plugin-import/pull/308
749[#298]: https://github.com/benmosher/eslint-plugin-import/pull/298
750[#297]: https://github.com/benmosher/eslint-plugin-import/pull/297
751[#296]: https://github.com/benmosher/eslint-plugin-import/pull/296
752[#290]: https://github.com/benmosher/eslint-plugin-import/pull/290
753[#289]: https://github.com/benmosher/eslint-plugin-import/pull/289
754[#288]: https://github.com/benmosher/eslint-plugin-import/pull/288
755[#287]: https://github.com/benmosher/eslint-plugin-import/pull/287
756[#278]: https://github.com/benmosher/eslint-plugin-import/pull/278
757[#261]: https://github.com/benmosher/eslint-plugin-import/pull/261
758[#256]: https://github.com/benmosher/eslint-plugin-import/pull/256
759[#254]: https://github.com/benmosher/eslint-plugin-import/pull/254
760[#250]: https://github.com/benmosher/eslint-plugin-import/pull/250
761[#247]: https://github.com/benmosher/eslint-plugin-import/pull/247
762[#245]: https://github.com/benmosher/eslint-plugin-import/pull/245
763[#243]: https://github.com/benmosher/eslint-plugin-import/pull/243
764[#241]: https://github.com/benmosher/eslint-plugin-import/pull/241
765[#239]: https://github.com/benmosher/eslint-plugin-import/pull/239
766[#228]: https://github.com/benmosher/eslint-plugin-import/pull/228
767[#211]: https://github.com/benmosher/eslint-plugin-import/pull/211
768[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
769[#157]: https://github.com/benmosher/eslint-plugin-import/pull/157
770[#1366]: https://github.com/benmosher/eslint-plugin-import/issues/1366
771[#1334]: https://github.com/benmosher/eslint-plugin-import/issues/1334
772[#1323]: https://github.com/benmosher/eslint-plugin-import/issues/1323
773[#1322]: https://github.com/benmosher/eslint-plugin-import/issues/1322
774[#1300]: https://github.com/benmosher/eslint-plugin-import/issues/1300
775[#1293]: https://github.com/benmosher/eslint-plugin-import/issues/1293
776[#1266]: https://github.com/benmosher/eslint-plugin-import/issues/1266
777[#1256]: https://github.com/benmosher/eslint-plugin-import/issues/1256
778[#1233]: https://github.com/benmosher/eslint-plugin-import/issues/1233
779[#1175]: https://github.com/benmosher/eslint-plugin-import/issues/1175
780[#1166]: https://github.com/benmosher/eslint-plugin-import/issues/1166
781[#1144]: https://github.com/benmosher/eslint-plugin-import/issues/1144
782[#1058]: https://github.com/benmosher/eslint-plugin-import/issues/1058
783[#1035]: https://github.com/benmosher/eslint-plugin-import/issues/1035
784[#931]: https://github.com/benmosher/eslint-plugin-import/issues/931
785[#886]: https://github.com/benmosher/eslint-plugin-import/issues/886
786[#863]: https://github.com/benmosher/eslint-plugin-import/issues/863
787[#842]: https://github.com/benmosher/eslint-plugin-import/issues/842
788[#839]: https://github.com/benmosher/eslint-plugin-import/issues/839
789[#795]: https://github.com/benmosher/eslint-plugin-import/issues/795
790[#793]: https://github.com/benmosher/eslint-plugin-import/issues/793
791[#720]: https://github.com/benmosher/eslint-plugin-import/issues/720
792[#717]: https://github.com/benmosher/eslint-plugin-import/issues/717
793[#686]: https://github.com/benmosher/eslint-plugin-import/issues/686
794[#671]: https://github.com/benmosher/eslint-plugin-import/issues/671
795[#660]: https://github.com/benmosher/eslint-plugin-import/issues/660
796[#653]: https://github.com/benmosher/eslint-plugin-import/issues/653
797[#627]: https://github.com/benmosher/eslint-plugin-import/issues/627
798[#620]: https://github.com/benmosher/eslint-plugin-import/issues/620
799[#609]: https://github.com/benmosher/eslint-plugin-import/issues/609
800[#604]: https://github.com/benmosher/eslint-plugin-import/issues/604
801[#602]: https://github.com/benmosher/eslint-plugin-import/issues/602
802[#601]: https://github.com/benmosher/eslint-plugin-import/issues/601
803[#592]: https://github.com/benmosher/eslint-plugin-import/issues/592
804[#577]: https://github.com/benmosher/eslint-plugin-import/issues/577
805[#570]: https://github.com/benmosher/eslint-plugin-import/issues/570
806[#567]: https://github.com/benmosher/eslint-plugin-import/issues/567
807[#566]: https://github.com/benmosher/eslint-plugin-import/issues/566
808[#545]: https://github.com/benmosher/eslint-plugin-import/issues/545
809[#530]: https://github.com/benmosher/eslint-plugin-import/issues/530
810[#529]: https://github.com/benmosher/eslint-plugin-import/issues/529
811[#519]: https://github.com/benmosher/eslint-plugin-import/issues/519
812[#507]: https://github.com/benmosher/eslint-plugin-import/issues/507
813[#484]: https://github.com/benmosher/eslint-plugin-import/issues/484
814[#478]: https://github.com/benmosher/eslint-plugin-import/issues/478
815[#456]: https://github.com/benmosher/eslint-plugin-import/issues/456
816[#453]: https://github.com/benmosher/eslint-plugin-import/issues/453
817[#452]: https://github.com/benmosher/eslint-plugin-import/issues/452
818[#447]: https://github.com/benmosher/eslint-plugin-import/issues/447
819[#441]: https://github.com/benmosher/eslint-plugin-import/issues/441
820[#423]: https://github.com/benmosher/eslint-plugin-import/issues/423
821[#416]: https://github.com/benmosher/eslint-plugin-import/issues/416
822[#415]: https://github.com/benmosher/eslint-plugin-import/issues/415
823[#402]: https://github.com/benmosher/eslint-plugin-import/issues/402
824[#386]: https://github.com/benmosher/eslint-plugin-import/issues/386
825[#373]: https://github.com/benmosher/eslint-plugin-import/issues/373
826[#370]: https://github.com/benmosher/eslint-plugin-import/issues/370
827[#348]: https://github.com/benmosher/eslint-plugin-import/issues/348
828[#342]: https://github.com/benmosher/eslint-plugin-import/issues/342
829[#328]: https://github.com/benmosher/eslint-plugin-import/issues/328
830[#317]: https://github.com/benmosher/eslint-plugin-import/issues/317
831[#313]: https://github.com/benmosher/eslint-plugin-import/issues/313
832[#311]: https://github.com/benmosher/eslint-plugin-import/issues/311
833[#306]: https://github.com/benmosher/eslint-plugin-import/issues/306
834[#286]: https://github.com/benmosher/eslint-plugin-import/issues/286
835[#283]: https://github.com/benmosher/eslint-plugin-import/issues/283
836[#281]: https://github.com/benmosher/eslint-plugin-import/issues/281
837[#275]: https://github.com/benmosher/eslint-plugin-import/issues/275
838[#272]: https://github.com/benmosher/eslint-plugin-import/issues/272
839[#270]: https://github.com/benmosher/eslint-plugin-import/issues/270
840[#267]: https://github.com/benmosher/eslint-plugin-import/issues/267
841[#266]: https://github.com/benmosher/eslint-plugin-import/issues/266
842[#216]: https://github.com/benmosher/eslint-plugin-import/issues/216
843[#214]: https://github.com/benmosher/eslint-plugin-import/issues/214
844[#210]: https://github.com/benmosher/eslint-plugin-import/issues/210
845[#200]: https://github.com/benmosher/eslint-plugin-import/issues/200
846[#192]: https://github.com/benmosher/eslint-plugin-import/issues/192
847[#191]: https://github.com/benmosher/eslint-plugin-import/issues/191
848[#189]: https://github.com/benmosher/eslint-plugin-import/issues/189
849[#170]: https://github.com/benmosher/eslint-plugin-import/issues/170
850[#155]: https://github.com/benmosher/eslint-plugin-import/issues/155
851[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
852[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89
853
854[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.19.0...HEAD
855[2.19.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.2...v2.19.0
856[2.18.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.1...v2.18.2
857[2.18.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.0...v2.18.1
858[2.18.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.3...v2.18.0
859[2.17.3]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.2...v2.17.3
860[2.17.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.1...v2.17.2
861[2.17.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.17.0...v2.17.1
862[2.17.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.16.0...v2.17.0
863[2.16.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.15.0...v2.16.0
864[2.15.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.14.0...v2.15.0
865[2.14.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.13.0...v2.14.0
866[2.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.12.0...v2.13.0
867[2.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.11.0...v2.12.0
868[2.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.10.0...v2.11.0
869[2.10.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.9.0...v2.10.0
870[2.9.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.8.0...v2.9.0
871[2.8.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.7.0...v2.8.0
872[2.7.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.6.1...v2.7.0
873[2.6.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.6.0...v2.6.1
874[2.6.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.5.0...v2.6.0
875[2.5.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.4.0...v2.5.0
876[2.4.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.3.0...v2.4.0
877[2.3.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.2.0...v2.3.0
878[2.2.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.1.0...v2.2.0
879[2.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.1...v2.1.0
880[2.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.0...v2.0.1
881[2.0.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.16.0...v2.0.0
882[1.16.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.15.0...v1.16.0
883[1.15.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.14.0...v1.15.0
884[1.14.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.13.0...v1.14.0
885[1.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.12.0...v1.13.0
886[1.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.11.1...v1.12.0
887[1.11.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.11.0...v1.11.1
888[1.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.3...v1.11.0
889[1.10.3]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.2...v1.10.3
890[1.10.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.1...v1.10.2
891[1.10.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.10.0...v1.10.1
892[1.10.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.2...v1.10.0
893[1.9.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.1...v1.9.2
894[1.9.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.9.0...v1.9.1
895[1.9.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.8.1...v1.9.0
896[1.8.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.8.0...v1.8.1
897[1.8.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.7.0...v1.8.0
898[1.7.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.6.1...v1.7.0
899[1.6.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.6.0...v1.6.1
900[1.6.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.5.0...1.6.0
901[1.5.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.4.0...v1.5.0
902[1.4.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.3.0...v1.4.0
903[1.3.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.2.0...v1.3.0
904[1.2.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.1.0...v1.2.0
905[1.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.4...v1.1.0
906[1.0.4]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.3...v1.0.4
907[1.0.3]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.2...v1.0.3
908[1.0.2]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.1...v1.0.2
909[1.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.0...v1.0.1
910[1.0.0]: https://github.com/benmosher/eslint-plugin-import/compare/v1.0.0-beta.0...v1.0.0
911[1.0.0-beta.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.13.0...v1.0.0-beta.0
912[0.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.1...v0.13.0
913[0.12.2]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.1...v0.12.2
914[0.12.1]: https://github.com/benmosher/eslint-plugin-import/compare/v0.12.0...v0.12.1
915[0.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.11.0...v0.12.0
916[0.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v0.10.1...v0.11.0
917[@mathieudutour]: https://github.com/mathieudutour
918[@gausie]: https://github.com/gausie
919[@singles]: https://github.com/singles
920[@jfmengels]: https://github.com/jfmengels
921[@lo1tuma]: https://github.com/lo1tuma
922[@dmnd]: https://github.com/dmnd
923[@lemonmade]: https://github.com/lemonmade
924[@jimbolla]: https://github.com/jimbolla
925[@jquense]: https://github.com/jquense
926[@jonboiser]: https://github.com/jonboiser
927[@taion]: https://github.com/taion
928[@strawbrary]: https://github.com/strawbrary
929[@SimenB]: https://github.com/SimenB
930[@josh]: https://github.com/josh
931[@borisyankov]: https://github.com/borisyankov
932[@gavriguy]: https://github.com/gavriguy
933[@jkimbo]: https://github.com/jkimbo
934[@le0nik]: https://github.com/le0nik
935[@scottnonnenberg]: https://github.com/scottnonnenberg
936[@sindresorhus]: https://github.com/sindresorhus
937[@ljharb]: https://github.com/ljharb
938[@rhettlivingston]: https://github.com/rhettlivingston
939[@zloirock]: https://github.com/zloirock
940[@rhys-vdw]: https://github.com/rhys-vdw
941[@wKich]: https://github.com/wKich
942[@tizmagik]: https://github.com/tizmagik
943[@knpwrs]: https://github.com/knpwrs
944[@spalger]: https://github.com/spalger
945[@preco21]: https://github.com/preco21
946[@skyrpex]: https://github.com/skyrpex
947[@fson]: https://github.com/fson
948[@ntdb]: https://github.com/ntdb
949[@jakubsta]: https://github.com/jakubsta
950[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
951[@duncanbeevers]: https://github.com/duncanbeevers
952[@giodamelio]: https://github.com/giodamelio
953[@ntdb]: https://github.com/ntdb
954[@ramasilveyra]: https://github.com/ramasilveyra
955[@sompylasar]: https://github.com/sompylasar
956[@kevin940726]: https://github.com/kevin940726
957[@eelyafi]: https://github.com/eelyafi
958[@mastilver]: https://github.com/mastilver
959[@jseminck]: https://github.com/jseminck
960[@laysent]: https://github.com/laysent
961[@k15a]: https://github.com/k15a
962[@mplewis]: https://github.com/mplewis
963[@rosswarren]: https://github.com/rosswarren
964[@alexgorbatchev]: https://github.com/alexgorbatchev
965[@tihonove]: https://github.com/tihonove
966[@robertrossmann]: https://github.com/robertrossmann
967[@isiahmeadows]: https://github.com/isiahmeadows
968[@graingert]: https://github.com/graingert
969[@danny-andrews]: https://github.com/dany-andrews
970[@fengkfengk]: https://github.com/fengkfengk
971[@futpib]: https://github.com/futpib
972[@klimashkin]: https://github.com/klimashkin
973[@lukeapage]: https://github.com/lukeapage
974[@manovotny]: https://github.com/manovotny
975[@mattijsbliek]: https://github.com/mattijsbliek
976[@hulkish]: https://github.com/hulkish
977[@chrislloyd]: https://github.com/chrislloyd
978[@ai]: https://github.com/ai
979[@syymza]: https://github.com/syymza
980[@justinanastos]: https://github.com/justinanastos
981[@1pete]: https://github.com/1pete
982[@gajus]: https://github.com/gajus
983[@jf248]: https://github.com/jf248
984[@aravindet]: https://github.com/aravindet
985[@pzhine]: https://github.com/pzhine
986[@st-sloth]: https://github.com/st-sloth
987[@ljqx]: https://github.com/ljqx
988[@kirill-konshin]: https://github.com/kirill-konshin
989[@asapach]: https://github.com/asapach
990[@sergei-startsev]: https://github.com/sergei-startsev
991[@ephys]: https://github.com/ephys
992[@lydell]: https://github.com/lydell
993[@jeffshaver]: https://github.com/jeffshaver
994[@timkraut]: https://github.com/timkraut
995[@TakeScoop]: https://github.com/TakeScoop
996[@rfermann]: https://github.com/rfermann
997[@bradennapier]: https://github.com/bradennapier
998[@schmod]: https://github.com/schmod
999[@echenley]: https://github.com/echenley
1000[@vikr01]: https://github.com/vikr01
1001[@bradzacher]: https://github.com/bradzacher
1002[@feychenie]: https://github.com/feychenie
1003[@kiwka]: https://github.com/kiwka
1004[@loganfsmyth]: https://github.com/loganfsmyth
1005[@johndevedu]: https://github.com/johndevedu
1006[@charlessuh]: https://github.com/charlessuh
1007[@kgregory]: https://github.com/kgregory
1008[@christophercurrie]: https://github.com/christophercurrie
1009[@alex-page]: https://github.com/alex-page
1010[@benmosher]: https://github.com/benmosher
1011[@fooloomanzoo]: https://github.com/fooloomanzoo
1012[@sheepsteak]: https://github.com/sheepsteak
1013[@sharmilajesupaul]: https://github.com/sharmilajesupaul
1014[@lencioni]: https://github.com/lencioni
1015[@JounQin]: https://github.com/JounQin
1016[@atikenny]: https://github.com/atikenny
1017[@schmidsi]: https://github.com/schmidsi
1018[@TrevorBurnham]: https://github.com/TrevorBurnham
1019[@benmunro]: https://github.com/benmunro
1020[@tihonove]: https://github.com/tihonove
1021[@brendo]: https://github.com/brendo
1022[@saschanaz]: https://github.com/saschanaz
1023[@brettz9]: https://github.com/brettz9
1024[@Taranys]: https://github.com/Taranys
1025[@maxmalov]: https://github.com/maxmalov
1026[@marcusdarmstrong]: https://github.com/marcusdarmstrong
1027[@Mairu]: https://github.com/Mairu
1028[@aamulumi]: https://github.com/aamulumi
1029[@pcorpet]: https://github.com/pcorpet
1030[@stropho]: https://github.com/stropho
1031[@luczsoma]: https://github.com/luczsoma
1032[@christophercurrie]: https://github.com/christophercurrie
1033[@randallreedjr]: https://github.com/randallreedjr
1034[@Pessimistress]: https://github.com/Pessimistress