Skip to content

Commit

Permalink
chore: add import/no-empty-named-blocks rule to ESLint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
VdustR committed Aug 11, 2024
1 parent c2df5f4 commit 86dde45
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/eslint/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ const rules: NonNullable<TypedFlatConfigItem["rules"]> = {
*/
"sort-imports": "off",
"import/order": "off",

/**
* Forbid `import {} from "module"`.
*/
"import/no-empty-named-blocks": "error",
};

export { rules };

0 comments on commit 86dde45

Please sign in to comment.