]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-restricted-exports.js
import and build new upstream release 7.2.0
[pve-eslint.git] / eslint / lib / rules / no-restricted-exports.js
index 5b5c7d9bffb99c2d8cb1e242f9c22d69d17d8294..6031e26de2c7e873c1f0c14dd109d6351dc04e3b 100644 (file)
@@ -61,6 +61,12 @@ module.exports = {
         }
 
         return {
+            ExportAllDeclaration(node) {
+                if (node.exported) {
+                    checkExportedName(node.exported);
+                }
+            },
+
             ExportNamedDeclaration(node) {
                 const declaration = node.declaration;