Skip to content

Commit

Permalink
Fix directive check in no-empty-file for TypeScript parser
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous committed Jul 23, 2023
1 parent 1b6757e commit 4952099
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
"@typescript-eslint/parser": "^5.61.0",
"@typescript-eslint/parser": "^6.1.0",
"ava": "^3.15.0",
"c8": "^8.0.0",
"chalk": "^5.3.0",
Expand Down
2 changes: 1 addition & 1 deletion rules/no-empty-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const messages = {
[MESSAGE_ID]: 'Empty files are not allowed.',
};

const isDirective = node => node.type === 'ExpressionStatement' && 'directive' in node;
const isDirective = node => node.type === 'ExpressionStatement' && node.directive !== undefined;
const isEmpty = node => isEmptyNode(node, isDirective);

const isTripleSlashDirective = node =>
Expand Down
10 changes: 10 additions & 0 deletions test/no-empty-file.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,13 @@ test.snapshot({
].map(extension => ({code: '{}', filename: `example.${extension}`})),
],
});

// Test for https://github.com/sindresorhus/eslint-plugin-unicorn/issues/2175
test.typescript({
valid: [
{code: '(() => {})();', filename: 'example.ts'},
],
invalid: [
{code: '"";', filename: 'example.ts', errors: 1},
],
});

0 comments on commit 4952099

Please sign in to comment.