mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-24 21:11:23 +01:00
merge completed... now to fix all the bugs...
This commit is contained in:
commit
87c4d80fbc
3472 changed files with 466748 additions and 6517 deletions
32
node_modules/eslint-plugin-import/docs/rules/export.md
generated
vendored
Normal file
32
node_modules/eslint-plugin-import/docs/rules/export.md
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# import/export
|
||||
|
||||
Reports funny business with exports, like repeated exports of names or defaults.
|
||||
|
||||
## Rule Details
|
||||
|
||||
```js
|
||||
export default class MyClass { /*...*/ } // Multiple default exports.
|
||||
|
||||
function makeClass() { return new MyClass(...arguments) }
|
||||
|
||||
export default makeClass // Multiple default exports.
|
||||
```
|
||||
|
||||
or
|
||||
```js
|
||||
export const foo = function () { /*...*/ } // Multiple exports of name 'foo'.
|
||||
|
||||
function bar() { /*...*/ }
|
||||
export { bar as foo } // Multiple exports of name 'foo'.
|
||||
```
|
||||
|
||||
In the case of named/default re-export, all `n` re-exports will be reported,
|
||||
as at least `n-1` of them are clearly mistakes, but it is not clear which one
|
||||
(if any) is intended. Could be the result of copy/paste, code duplication with
|
||||
intent to rename, etc.
|
||||
|
||||
## Further Reading
|
||||
|
||||
- Lee Byron's [ES7] export proposal
|
||||
|
||||
[ES7]: https://github.com/leebyron/ecmascript-more-export-from
|
||||
Loading…
Add table
Add a link
Reference in a new issue