fixing lint

This commit is contained in:
Julien Catania 2023-09-22 20:42:28 +02:00
parent 476b57a800
commit 76a051e007
4 changed files with 44 additions and 60 deletions

View file

@ -4,7 +4,10 @@ import {FileContent, InputProvider, ReportInput} from './input-provider'
import {listFiles} from '../utils/git'
export class LocalFileProvider implements InputProvider {
constructor(readonly name: string, readonly pattern: string[]) {}
constructor(
readonly name: string,
readonly pattern: string[]
) {}
async load(): Promise<ReportInput> {
const result: FileContent[] = []