UNPKG

381 BJavaScriptView Raw
1module.exports = {
2 meta: {
3 docs: {
4 description: 'Disallow the use of `debugger`.',
5 category: 'Possible Errors',
6 recommended: true,
7 },
8 schema: [],
9 },
10
11 create(context) {
12 return {
13 DebuggerStatement(node) {
14 context.report({
15 node,
16 message: "Unexpected 'debugger' statement.",
17 });
18 },
19 };
20 },
21};