Empty specifier lists in import and export statements like import {} from 'module' serve no purpose.
They can appear due to refactoring or code generation errors.
If you need to run a module’s code without importing any values, use a side-effect import instead.
This rule reports import and export statements that have empty braces with no specifiers.
If your codebase intentionally uses empty import braces for specific purposes, such as ensuring module execution order or for tooling that processes imports in a special way, you may not need this rule.