Skip to content

Commit b48001b

Browse files
ertrzyiksljharb
authored andcommitted
[Fix] no-duplicates: ensure autofix avoids excessive newlines
Fixes #2027
1 parent 7c1e8e4 commit b48001b

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
3131
- [`newline-after-import`]: respect decorator annotations ([#1985], thanks [@lilling])
3232
- [`no-restricted-paths`]: enhance performance for zones with `except` paths ([#2022], thanks [@malykhinvi])
3333
- [`no-unresolved`]: check import() ([#2026], thanks [@aladdin-add])
34+
- [`no-duplicates`]: ensure autofix avoids excessive newlines ([#2028], thanks [@ertrzyiks])
3435

3536
### Changed
3637
- [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
@@ -770,6 +771,7 @@ for info on changes for earlier releases.
770771
[`memo-parser`]: ./memo-parser/README.md
771772

772773
[#2034]: https://github.com/benmosher/eslint-plugin-import/pull/2034
774+
[#2028]: https://github.com/benmosher/eslint-plugin-import/pull/2028
773775
[#2026]: https://github.com/benmosher/eslint-plugin-import/pull/2026
774776
[#2022]: https://github.com/benmosher/eslint-plugin-import/pull/2022
775777
[#2021]: https://github.com/benmosher/eslint-plugin-import/pull/2021
@@ -1368,4 +1370,5 @@ for info on changes for earlier releases.
13681370
[@aladdin-add]: https://github.com/aladdin-add
13691371
[@davidbonnet]: https://github.com/davidbonnet
13701372
[@hayes]: https://github.com/hayes
1371-
[@edemaine]: https://github.com/edemaine
1373+
[@edemaine]: https://github.com/edemaine
1374+
[@ertrzyiks]: https://github.com/ertrzyiks

src/rules/no-duplicates.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,27 @@ function getFix(first, rest, sourceCode) {
150150

151151
// Remove imports whose specifiers have been moved into the first import.
152152
for (const specifier of specifiers) {
153-
fixes.push(fixer.remove(specifier.importNode));
153+
const importNode = specifier.importNode;
154+
fixes.push(fixer.remove(importNode));
155+
156+
const charAfterImportRange = [importNode.range[1], importNode.range[1] + 1];
157+
const charAfterImport = sourceCode.text.substring(charAfterImportRange[0], charAfterImportRange[1]);
158+
if (charAfterImport === '\n') {
159+
fixes.push(fixer.removeRange(charAfterImportRange));
160+
}
154161
}
155162

156163
// Remove imports whose default import has been moved to the first import,
157164
// and side-effect-only imports that are unnecessary due to the first
158165
// import.
159166
for (const node of unnecessaryImports) {
160167
fixes.push(fixer.remove(node));
168+
169+
const charAfterImportRange = [node.range[1], node.range[1] + 1];
170+
const charAfterImport = sourceCode.text.substring(charAfterImportRange[0], charAfterImportRange[1]);
171+
if (charAfterImport === '\n') {
172+
fixes.push(fixer.removeRange(charAfterImportRange));
173+
}
161174
}
162175

163176
return fixes;

tests/src/rules/no-duplicates.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,21 @@ ruleTester.run('no-duplicates', rule, {
400400
`,
401401
errors: ['\'./foo\' imported multiple times.', '\'./foo\' imported multiple times.'],
402402
}),
403+
404+
405+
// #2027 long import list generate empty lines
406+
test({
407+
code: "import { Foo } from './foo';\nimport { Bar } from './foo';\nexport const value = {}",
408+
output: "import { Foo , Bar } from './foo';\nexport const value = {}",
409+
errors: ['\'./foo\' imported multiple times.', '\'./foo\' imported multiple times.'],
410+
}),
411+
412+
// #2027 long import list generate empty lines
413+
test({
414+
code: "import { Foo } from './foo';\nimport Bar from './foo';\nexport const value = {}",
415+
output: "import Bar, { Foo } from './foo';\nexport const value = {}",
416+
errors: ['\'./foo\' imported multiple times.', '\'./foo\' imported multiple times.'],
417+
}),
403418
],
404419
});
405420

@@ -430,4 +445,3 @@ context('TypeScript', function() {
430445
});
431446
});
432447
});
433-

0 commit comments

Comments
 (0)