mirror of https://github.com/lukechilds/node.git
20 lines
481 B
20 lines
481 B
/**
|
|
* @fileoverview Rule to flag use of a debugger statement
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
return {
|
|
"DebuggerStatement": function(node) {
|
|
context.report(node, "Unexpected 'debugger' statement.");
|
|
}
|
|
};
|
|
|
|
};
|
|
|