eslint-config-chain-able
Version:
an opinionated ESLint configuration
33 lines (25 loc) • 698 B
JavaScript
/**
* @fileoverview Rule to flag use of with statement
* @author Nicholas C. Zakas
*/
;
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow `with` statements",
category: "Best Practices",
recommended: false
},
schema: []
},
create(context) {
return {
WithStatement(node) {
context.report({ node, message: "Unexpected use of 'with' statement." });
}
};
}
};