Fix @typescript-eslint/no-array-constructor errors

This commit is contained in:
Markus Olsson 2020-07-02 17:35:22 +02:00
parent bf51bc5725
commit cc7c59aae3

View file

@ -105,7 +105,7 @@ export class GitStore extends BaseStore {
public pullWithRebase?: boolean
private _history: ReadonlyArray<string> = new Array()
private _history: ReadonlyArray<string> = []
private readonly requestsInFight = new Set<string>()