13 lines
174 B
JavaScript
13 lines
174 B
JavaScript
/*
|
|
* @flow
|
|
*/
|
|
export type ESLintReport = {
|
|
node: any,
|
|
message: string,
|
|
};
|
|
|
|
export type ESLintContext = {
|
|
options: Array<Object>,
|
|
report: (ESLintReport) => void,
|
|
};
|