orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
52 lines (43 loc) • 1.37 kB
JavaScript
/**
* @fileoverview Restrict usage of specified node imports.
* @author Guy Ellis
*/
;
//------------------------------------------------------------------------------
// 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
});
}
}
}
};
}
};