d2-ui
Version:
33 lines (25 loc) • 716 B
JavaScript
/**
* @fileoverview Rule to flag use of a debugger statement
* @author Nicholas C. Zakas
*/
;
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow the use of `debugger`",
category: "Possible Errors",
recommended: true
},
schema: []
},
create: function(context) {
return {
DebuggerStatement: function(node) {
context.report(node, "Unexpected 'debugger' statement.");
}
};
}
};