Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(eslint-plugin): add no-useless-empty-export rule #4380

Merged
Merged
43 changes: 43 additions & 0 deletions packages/eslint-plugin/docs/rules/no-useless-empty-export.md
@@ -0,0 +1,43 @@
# Disallow empty exports that don't change anything in a module file (`no-useless-empty-export`)

## Rule Details

An empty `export {}` statement is sometimes useful in TypeScript code to turn a file that would otherwise be a script file into a module file.
Per the TypeScript Handbook [Modules](https://www.typescriptlang.org/docs/handbook/modules.html) page:

> In TypeScript, just as in ECMAScript 2015, any file containing a top-level import or export is considered a module.
> Conversely, a file without any top-level import or export declarations is treated as a script whose contents are available in the global scope (and therefore to modules as well).

However, an `export {}` statement does nothing if there are any other top-level import or export statements in a file.

Examples of code for this rule:

<!--tabs-->

### ❌ Incorrect

```ts
export const value = 'Hello, world!';
export {};
```

```ts
import 'some-other-module';
export {};
```

### ✅ Correct

```ts
export const value = 'Hello, world!';
```

```ts
import 'some-other-module';
```

## Attributes

- [ ] ✅ Recommended
- [x] 🔧 Fixable
- [ ] 💭 Requires type information
1 change: 1 addition & 0 deletions packages/eslint-plugin/src/configs/all.ts
Expand Up @@ -114,6 +114,7 @@ export = {
'@typescript-eslint/no-unused-vars': 'error',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'error',
'@typescript-eslint/no-useless-empty-export': 'error',
'no-useless-constructor': 'off',
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/no-var-requires': 'error',
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-plugin/src/rules/index.ts
Expand Up @@ -81,6 +81,7 @@ import noUnusedExpressions from './no-unused-expressions';
import noUnusedVars from './no-unused-vars';
import noUseBeforeDefine from './no-use-before-define';
import noUselessConstructor from './no-useless-constructor';
import noUselessEmptyExport from './no-useless-empty-export';
import noVarRequires from './no-var-requires';
import nonNullableTypeAssertionStyle from './non-nullable-type-assertion-style';
import objectCurlySpacing from './object-curly-spacing';
Expand Down Expand Up @@ -204,6 +205,7 @@ export default {
'no-unused-vars': noUnusedVars,
'no-use-before-define': noUseBeforeDefine,
'no-useless-constructor': noUselessConstructor,
'no-useless-empty-export': noUselessEmptyExport,
'no-var-requires': noVarRequires,
'non-nullable-type-assertion-style': nonNullableTypeAssertionStyle,
'object-curly-spacing': objectCurlySpacing,
Expand Down
73 changes: 73 additions & 0 deletions packages/eslint-plugin/src/rules/no-useless-empty-export.ts
@@ -0,0 +1,73 @@
import {
AST_NODE_TYPES,
TSESTree,
} from '@typescript-eslint/experimental-utils';
import * as util from '../util';

function isEmptyExport(
node: TSESTree.Node,
): node is TSESTree.ExportNamedDeclaration {
return (
node.type === AST_NODE_TYPES.ExportNamedDeclaration &&
node.specifiers.length === 0 &&
!node.declaration
);
}

const exportOrImportNodeTypes = new Set([
AST_NODE_TYPES.ExportAllDeclaration,
AST_NODE_TYPES.ExportDefaultDeclaration,
AST_NODE_TYPES.ExportNamedDeclaration,
AST_NODE_TYPES.ExportSpecifier,
AST_NODE_TYPES.ImportDeclaration,
AST_NODE_TYPES.TSExportAssignment,
AST_NODE_TYPES.TSImportEqualsDeclaration,
]);

export default util.createRule({
name: 'no-useless-empty-export',
meta: {
docs: {
description:
"Disallow empty exports that don't change anything in a module file",
recommended: false,
suggestion: true,
},
fixable: 'code',
hasSuggestions: true,
messages: {
uselessExport: 'Empty export does nothing and can be removed.',
},
schema: [],
type: 'suggestion',
},
defaultOptions: [],
create(context) {
return {
Program(node): void {
JoshuaKGoldberg marked this conversation as resolved.
Show resolved Hide resolved
let emptyExport: TSESTree.ExportNamedDeclaration | undefined;
let foundOtherExport = false;

for (const statement of node.body) {
if (isEmptyExport(statement)) {
emptyExport = statement;

if (foundOtherExport) {
break;
}
} else if (exportOrImportNodeTypes.has(statement.type)) {
foundOtherExport = true;
}
}

if (emptyExport && foundOtherExport) {
context.report({
fix: fixer => fixer.remove(emptyExport!),
messageId: 'uselessExport',
node: emptyExport,
});
}
},
};
},
});
121 changes: 121 additions & 0 deletions packages/eslint-plugin/tests/rules/no-useless-empty-export.test.ts
@@ -0,0 +1,121 @@
/* eslint-disable eslint-comments/no-use */
// this rule tests the spacing, which prettier will want to fix and break the tests
/* eslint "@typescript-eslint/internal/plugin-test-formatting": ["error", { formatWithPrettier: false }] */
/* eslint-enable eslint-comments/no-use */
import rule from '../../src/rules/no-useless-empty-export';
import { RuleTester } from '../RuleTester';

const ruleTester = new RuleTester({
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
parser: '@typescript-eslint/parser',
});

const error = {
messageId: 'uselessExport',
} as const;

ruleTester.run('no-useless-empty-export', rule, {
valid: [
"import {} from '_';",
"import * as _ from '_';",
'export = {};',
'export = 3;',
'export const _ = {};',
`
const _ = {};
export default _;
`,
`
export * from '_';
export = {};
`,
JoshuaKGoldberg marked this conversation as resolved.
Show resolved Hide resolved
],
invalid: [
{
code: `
export const _ = {};
export {};
`,
errors: [error],
output: `
export const _ = {};

`,
},
{
code: `
export * from '_';
export {};
`,
errors: [error],
output: `
export * from '_';

`,
},
{
code: `
export {};
export * from '_';
`,
errors: [error],
output: `

export * from '_';
`,
},
{
code: `
const _ = {};
export default _;
export {};
`,
errors: [error],
output: `
const _ = {};
export default _;

`,
},
{
code: `
export {};
const _ = {};
export default _;
`,
errors: [error],
output: `

const _ = {};
export default _;
`,
},
{
code: `
const _ = {};
export { _ };
export {};
`,
errors: [error],
output: `
const _ = {};
export { _ };

`,
},
{
code: `
import _ = require('_');
export {};
`,
errors: [error],
output: `
import _ = require('_');

`,
},
],
});