You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.3 KiB

/**
* @fileoverview Restrict usage of specified node imports.
* @author Guy Ellis
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow specified modules when loaded by `import`",
category: "ECMAScript 6",
recommended: false
},
schema: {
type: "array",
items: {
type: "string"
},
uniqueItems: true
}
},
create(context) {
const restrictedImports = context.options;
// if no imports are restricted we don"t need to check
if (restrictedImports.length === 0) {
return {};
}
return {
ImportDeclaration(node) {
if (node && node.source && node.source.value) {
const value = node.source.value.trim();
if (restrictedImports.indexOf(value) !== -1) {
context.report(node, "'{{importName}}' import is restricted from being used.", {
importName: value
});
}
}
}
};
}
};