source: imaps-frontend/node_modules/eslint-plugin-react/lib/util/report.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 235 bytes
Line 
1'use strict';
2
3const getMessageData = require('./message');
4
5module.exports = function report(context, message, messageId, data) {
6 context.report(
7 Object.assign(
8 getMessageData(messageId, message),
9 data
10 )
11 );
12};
Note: See TracBrowser for help on using the repository browser.