/** * @author Yosuke Ota * See LICENSE file in root directory for full license. */ "use strict" module.exports = { meta: { docs: { description: "disallow `export * as ns`.", category: "ES2020", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-export-ns-from.html", }, fixable: null, messages: { forbidden: "ES2020 'export * as ns' are forbidden.", }, schema: [], type: "problem", }, create(context) { return { "ExportAllDeclaration[exported!=null]"(node) { context.report({ node, messageId: "forbidden" }) }, } }, }