**Please describe what the rule should do:** Disallow arbitrary module namespace names, added in ES2022. https://github.com/tc39/ecma262/pull/2154 **Provide 2-3 code examples that this rule will warn about:** ```js export { foo as "str" } import { "str" as foo } from "mod"; ```