@maniascript/mslint
Version:
ManiaScript linter
16 lines (15 loc) • 394 B
JavaScript
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');
}
};
}
};