UNPKG

eslint-plugin-better

Version:

Avoid some language features to write better code

7 lines 149 B
module.exports = function(context) { return { 'NewExpression': function(node) { context.report(node, 'Unexpected "new" expression'); } }; };