UNPKG

@maniascript/mslint

Version:
16 lines (15 loc) 417 B
import {} from '../linter/rule.js'; export const noContinue = { meta: { id: 'no-continue', description: 'Forbid the use of the continue statement', recommended: false }, create(context) { return { 'ContinueStatement:exit': (node) => { context.report(node, 'The use of the \'continue\' statement is forbidden'); } }; } };