Skip to content

Commit

Permalink
[Fix] no-default-import: report on the token "default" instead of t…
Browse files Browse the repository at this point in the history
…he entire node
  • Loading branch information
pmcelhaney authored and ljharb committed Nov 10, 2021
1 parent 371d6d1 commit 4e48a32
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 29 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,9 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange

## [Unreleased]

### Changed
- [`no-default-import`]: report on the token "default" instead of the entire node ([#2299], [@pmcelhaney])

## [2.25.3] - 2021-11-09

### Fixed
Expand Down Expand Up @@ -942,6 +945,7 @@ for info on changes for earlier releases.

[`memo-parser`]: ./memo-parser/README.md

[#2299]: https://github.com/import-js/eslint-plugin-import/pull/2299
[#2297]: https://github.com/import-js/eslint-plugin-import/pull/2297
[#2287]: https://github.com/import-js/eslint-plugin-import/pull/2287
[#2282]: https://github.com/import-js/eslint-plugin-import/pull/2282
Expand Down
8 changes: 5 additions & 3 deletions src/rules/no-default-export.js
Expand Up @@ -20,15 +20,17 @@ module.exports = {

return {
ExportDefaultDeclaration(node) {
context.report({ node, message: preferNamed });
const { loc } = context.getSourceCode().getFirstTokens(node)[1] || {};
context.report({ node, message: preferNamed, loc });
},

ExportNamedDeclaration(node) {
node.specifiers.filter(specifier => specifier.exported.name === 'default').forEach(specifier => {
const { loc } = context.getSourceCode().getFirstTokens(node)[1] || {};
if (specifier.type === 'ExportDefaultSpecifier') {
context.report({ node, message: preferNamed });
context.report({ node, message: preferNamed, loc });
} else if (specifier.type === 'ExportSpecifier') {
context.report({ node, message: noAliasDefault(specifier) });
context.report({ node, message: noAliasDefault(specifier), loc });
}
});
},
Expand Down
94 changes: 69 additions & 25 deletions tests/src/rules/no-default-export.js
@@ -1,4 +1,4 @@
import { test } from '../utils';
import { test, testVersion } from '../utils';

import { RuleTester } from 'eslint';

Expand Down Expand Up @@ -85,38 +85,82 @@ ruleTester.run('no-default-export', rule, {
parser: require.resolve('babel-eslint'),
}),
],
invalid: [
test({
invalid: [].concat(
testVersion('> 2', () => ({
code: 'export default function bar() {};',
errors: [{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
}],
}),
test({
errors: [
{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
line: 1,
column: 8,
}
],
})),
testVersion('> 2', () => ({
code: `
export const foo = 'foo';
export default bar;`,
errors: [{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
}],
}),
errors: [
{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
line: 3,
column: 16,
}
],
})),
testVersion('> 2', () => ({
code: 'export default class Bar {};',
errors: [
{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
line: 1,
column: 8,
}
],
})),
testVersion('> 2', () => ({
code: 'export default function() {};',
errors: [
{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
line: 1,
column: 8,
}
],
})),
testVersion('> 2', () => ({
code: 'export default class {};',
errors: [
{
type: 'ExportDefaultDeclaration',
message: 'Prefer named exports.',
line: 1,
column: 8,
}
],
})),
test({
code: 'let foo; export { foo as default }',
errors: [{
type: 'ExportNamedDeclaration',
message: 'Do not alias `foo` as `default`. Just export `foo` itself ' +
'instead.',
}],
errors: [
{
type: 'ExportNamedDeclaration',
message: 'Do not alias `foo` as `default`. Just export `foo` itself instead.',
}
],
}),
test({
code: 'export default from "foo.js"',
parser: require.resolve('babel-eslint'),
errors: [{
type: 'ExportNamedDeclaration',
message: 'Prefer named exports.',
}],
}),
],
errors: [
{
type: 'ExportNamedDeclaration',
message: 'Prefer named exports.',
}
],
}),
),
});
2 changes: 1 addition & 1 deletion tests/src/utils.js
Expand Up @@ -28,7 +28,7 @@ export function getNonDefaultParsers() {
export const FILENAME = testFilePath('foo.js');

export function testVersion(specifier, t) {
return semver.satisfies(eslintPkg.version, specifier) && test(t());
return semver.satisfies(eslintPkg.version, specifier) ? test(t()) : [];
}

export function test(t) {
Expand Down

0 comments on commit 4e48a32

Please sign in to comment.