forked from un-ts/eslint-plugin-import-x
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
no-named-export
+ docs/tests (import-js#1157)
* Add `no-named-export` + docs/tests * Fix no-named-export docs missing quotes * Fix ruleId in no-named-export case test * Tighten no-named-export error message
- Loading branch information
Showing
5 changed files
with
292 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# no-named-export | ||
|
||
Prohibit named exports. Mostly an inverse of [`no-default-export`]. | ||
|
||
[`no-default-export`]: ./no-default-export.md | ||
|
||
## Rule Details | ||
|
||
The following patterns are considered warnings: | ||
|
||
```javascript | ||
// bad1.js | ||
|
||
// There is only a single module export and it's a named export. | ||
export const foo = 'foo'; | ||
``` | ||
|
||
```javascript | ||
// bad2.js | ||
|
||
// There is more than one named export in the module. | ||
export const foo = 'foo'; | ||
export const bar = 'bar'; | ||
``` | ||
|
||
```javascript | ||
// bad3.js | ||
|
||
// There is more than one named export in the module. | ||
const foo = 'foo'; | ||
const bar = 'bar'; | ||
export { foo, bar } | ||
``` | ||
|
||
```javascript | ||
// bad4.js | ||
|
||
// There is more than one named export in the module. | ||
export * from './other-module' | ||
``` | ||
|
||
```javascript | ||
// bad5.js | ||
|
||
// There is a default and a named export. | ||
export const foo = 'foo'; | ||
const bar = 'bar'; | ||
export default 'bar'; | ||
``` | ||
|
||
The following patterns are not warnings: | ||
|
||
```javascript | ||
// good1.js | ||
|
||
// There is only a single module export and it's a default export. | ||
export default 'bar'; | ||
``` | ||
|
||
```javascript | ||
// good2.js | ||
|
||
// There is only a single module export and it's a default export. | ||
const foo = 'foo'; | ||
export { foo as default } | ||
``` | ||
|
||
```javascript | ||
// good3.js | ||
|
||
// There is only a single module export and it's a default export. | ||
export default from './other-module'; | ||
``` | ||
|
||
## When Not To Use It | ||
|
||
If you don't care if named imports are used, or if you prefer named imports over default imports. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import docsUrl from '../docsUrl' | ||
|
||
module.exports = { | ||
meta: { | ||
docs: { url: docsUrl('no-named-export') }, | ||
}, | ||
|
||
create(context) { | ||
// ignore non-modules | ||
if (context.parserOptions.sourceType !== 'module') { | ||
return {} | ||
} | ||
|
||
const message = 'Named exports are not allowed.' | ||
|
||
return { | ||
ExportAllDeclaration(node) { | ||
context.report({node, message}) | ||
}, | ||
|
||
ExportNamedDeclaration(node) { | ||
if (node.specifiers.length === 0) { | ||
return context.report({node, message}) | ||
} | ||
|
||
const someNamed = node.specifiers.some(specifier => specifier.exported.name !== 'default') | ||
if (someNamed) { | ||
context.report({node, message}) | ||
} | ||
}, | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
import { RuleTester } from 'eslint' | ||
import { test } from '../utils' | ||
|
||
const ruleTester = new RuleTester() | ||
, rule = require('rules/no-named-export') | ||
|
||
ruleTester.run('no-named-export', rule, { | ||
valid: [ | ||
test({ | ||
code: 'export default function bar() {};', | ||
}), | ||
test({ | ||
code: 'export { foo as default }', | ||
}), | ||
test({ | ||
code: 'export default from "foo.js"', | ||
parser: 'babel-eslint', | ||
}), | ||
|
||
// no exports at all | ||
test({ | ||
code: `import * as foo from './foo';`, | ||
}), | ||
test({ | ||
code: `import foo from './foo';`, | ||
}), | ||
test({ | ||
code: `import {default as foo} from './foo';`, | ||
}), | ||
], | ||
invalid: [ | ||
test({ | ||
code: ` | ||
export const foo = 'foo'; | ||
export const bar = 'bar'; | ||
`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}, { | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: ` | ||
export const foo = 'foo'; | ||
export default bar;`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: ` | ||
export const foo = 'foo'; | ||
export function bar() {}; | ||
`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}, { | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const foo = 'foo';`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: ` | ||
const foo = 'foo'; | ||
export { foo }; | ||
`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export { foo, bar }`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const { foo, bar } = item;`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const { foo, bar: baz } = item;`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const { foo: { bar, baz } } = item;`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: ` | ||
export const foo = item; | ||
export { item }; | ||
`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}, { | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export * from './foo';`, | ||
errors: [{ | ||
ruleId: 'ExportAllDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const { foo } = { foo: "bar" };`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export const { foo: { bar } } = { foo: { bar: "baz" } };`, | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: 'export { a, b } from "foo.js"', | ||
parser: 'babel-eslint', | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export type UserId = number;`, | ||
parser: 'babel-eslint', | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: 'export foo from "foo.js"', | ||
parser: 'babel-eslint', | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
test({ | ||
code: `export Memory, { MemoryValue } from './Memory'`, | ||
parser: 'babel-eslint', | ||
errors: [{ | ||
ruleId: 'ExportNamedDeclaration', | ||
message: 'Named exports are not allowed.', | ||
}], | ||
}), | ||
], | ||
}) |