UNPKG

@maniascript/mslint

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