diff --git a/src/rules/first.js b/src/rules/first.js index 7bcd1fa22..d4656f868 100644 --- a/src/rules/first.js +++ b/src/rules/first.js @@ -1,5 +1,16 @@ import docsUrl from '../docsUrl' +function isReexport(node) { + switch (node.type) { + case 'ExportAllDeclaration': + return true + case 'ExportNamedDeclaration': + return !!node.source + default: + return false + } +} + module.exports = { meta: { type: 'suggestion', @@ -69,7 +80,7 @@ module.exports = { } else { lastLegalImp = node } - } else { + } else if (!isReexport(node)) { nonImportCount++ } }) diff --git a/tests/src/rules/first.js b/tests/src/rules/first.js index 55367cf43..f090bd9d1 100644 --- a/tests/src/rules/first.js +++ b/tests/src/rules/first.js @@ -13,6 +13,10 @@ ruleTester.run('first', rule, { , test({ code: "import { x } from './foo'; import { y } from 'bar'" }) , test({ code: "'use directive';\ import { x } from 'foo';" }) + , test({ code: "export { y } from 'bar';\ + import { x } from 'foo';" }) + , test({ code: "export * from 'bar';\ + import { x } from 'foo';" }) , ], invalid: [