UNPKG

eslint-plugin-meteor

Version:
22 lines (19 loc) 499 B
/** * @fileoverview Prevent usage of Session * @author Dominik Ferber */ // ----------------------------------------------------------------------------- // Rule Definition // ----------------------------------------------------------------------------- module.exports = { meta: { schema: [], }, create: (context) => ({ MemberExpression: (node) => { if (node.object.name === 'Session') { context.report(node, 'Unexpected Session statement'); } }, }), };