### Description Similar to #2680 ### Examples ```js // ❌ import foo from "foo" with {}; // ✅ import foo from "foo"; ``` ```js // ❌ export {foo} from "foo" with {}; // ✅ export {foo} from "foo"; ``` ### Proposed rule name require-module-attributes ### Additional Info _No response_