GoScrobble/web/node_modules/fork-ts-checker-webpack-plugin/lib/issue/eslint/FileAwareEsLintMessage.d.ts

10 lines
281 B
TypeScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
import { LintMessage } from '../../types/eslint';
/**
* We need to define custom interface because of eslint architecture which
* groups lint messages per file
*/
interface FileAwareEsLintMessage extends LintMessage {
filePath?: string;
}
export { FileAwareEsLintMessage };