eslint-config-chain-able
Version:
an opinionated ESLint configuration
36 lines (27 loc) • 801 B
JavaScript
/**
* @fileoverview Rule to flag when deleting variables
* @author Ilya Volodin
*/
;
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow deleting variables",
category: "Variables",
recommended: true
},
schema: []
},
create(context) {
return {
UnaryExpression(node) {
if (node.operator === "delete" && node.argument.type === "Identifier") {
context.report({ node, message: "Variables should not be deleted." });
}
}
};
}
};