You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
947 B
44 lines
947 B
3 years ago
|
/**
|
||
|
* @fileoverview Rule to flag use of a debugger statement
|
||
|
* @author Nicholas C. Zakas
|
||
|
*/
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
type: "problem",
|
||
|
|
||
|
docs: {
|
||
|
description: "disallow the use of `debugger`",
|
||
|
category: "Possible Errors",
|
||
|
recommended: true,
|
||
|
url: "https://eslint.org/docs/rules/no-debugger"
|
||
|
},
|
||
|
|
||
|
fixable: null,
|
||
|
schema: [],
|
||
|
|
||
|
messages: {
|
||
|
unexpected: "Unexpected 'debugger' statement."
|
||
|
}
|
||
|
},
|
||
|
|
||
|
create(context) {
|
||
|
|
||
|
return {
|
||
|
DebuggerStatement(node) {
|
||
|
context.report({
|
||
|
node,
|
||
|
messageId: "unexpected"
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|
||
|
};
|