orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
33 lines (25 loc) • 685 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, "Unexpected use of 'with' statement.");
}
};
}
};