Skip to content

Latest commit

 

History

History
100 lines (59 loc) · 2.37 KB

no-restricted-exports.md

File metadata and controls

100 lines (59 loc) · 2.37 KB

Disallow specified names in named exports (no-restricted-exports)

In a project, certain names may be disallowed from being used as exported names for various reasons.

Rule Details

This rule disallows specified names from being used as exported names.

Options

By default, this rule doesn't disallow any names. Only the names you specify in the configuration will be disallowed.

This rule has one option, an array of strings, where each string is a name to be restricted.

Examples of incorrect code for this rule:

/*eslint no-restricted-exports: ["error", ["foo", "bar", "Baz", "a", "b", "c", "d"]]*/

export const foo = 1;

export function bar() {}

export class Baz {}

const a = {};
export { a };

function someFunction() {}
export { someFunction as b };

export { c } from 'some_module';

export { something as d } from 'some_module';

Examples of correct code for this rule:

/*eslint no-restricted-exports: ["error", ["foo", "bar", "Baz", "a", "b", "c", "d"]]*/

export const quux = 1;

export function myFunction() {}

export class MyClass {}

const a = {};
export { a as myObject };

function someFunction() {}
export { someFunction };

export { c as someName } from 'some_module';

export { something } from 'some_module';

Default exports

By design, this rule never disallows default export declarations. If you configure "default" as a restricted name, that restriction will apply only to named export declarations.

Examples of additional incorrect code for this rule:

/*eslint no-restricted-exports: ["error", ["default"]]*/

function foo() {}

export {foo as default};
/*eslint no-restricted-exports: ["error", ["default"]]*/

export { default } from 'some_module';

Examples of additional correct code for this rule:

/*eslint no-restricted-exports: ["error", ["default", "foo"]]*/

export default function foo() {}

Known Limitations

This rule doesn't inspect the content of source modules in re-export declarations. In particular, if you are re-exporting everything from another module's export, that export may include a restricted name. This rule cannot detect such cases.

//----- some_module.js -----
export function foo() {}

//----- my_module.js -----
/*eslint no-restricted-exports: ["error", ["foo"]]*/

export * from 'some_module'; // allowed, although this declaration exports "foo" from my_module