|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
516 bytes
|
| Line | |
|---|
| 1 | import webpack from 'webpack';
|
|---|
| 2 | import { EsLintReporterOptions } from './EsLintReporterOptions';
|
|---|
| 3 | import { CLIEngineOptions } from './types/eslint';
|
|---|
| 4 | interface EsLintReporterConfiguration {
|
|---|
| 5 | enabled: boolean;
|
|---|
| 6 | memoryLimit: number;
|
|---|
| 7 | options: CLIEngineOptions;
|
|---|
| 8 | files: string[];
|
|---|
| 9 | }
|
|---|
| 10 | declare function createEsLintReporterConfiguration(compiler: webpack.Compiler, options: EsLintReporterOptions | undefined): EsLintReporterConfiguration;
|
|---|
| 11 | export { EsLintReporterConfiguration, createEsLintReporterConfiguration };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.