|
12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * @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"
- });
- }
- };
-
- }
- };
|