mirror of https://gitee.com/bigwinds/arangodb
33 lines
716 B
JavaScript
33 lines
716 B
JavaScript
/**
|
|
* @fileoverview Rule to flag use of a debugger statement
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// 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.");
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|