/* * @flow */ export type ESLintReport = { node: any, message: string, }; export type ESLintContext = { options: Array, report: (ESLintReport) => void, };