UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

44 lines (34 loc) 947 B
/** * @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" }); } }; } };