From 5542d5e7101d519fb20419aba3222a3479a9f62d Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Thu, 9 Dec 2021 11:40:13 +0100 Subject: [PATCH] lint --- lib/workers/global/config/parse/file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/workers/global/config/parse/file.ts b/lib/workers/global/config/parse/file.ts index 6c372148ddf872..103d24d8692f4e 100644 --- a/lib/workers/global/config/parse/file.ts +++ b/lib/workers/global/config/parse/file.ts @@ -1,10 +1,10 @@ -import { readFile } from '../../../../util/fs'; import { load } from 'js-yaml'; import JSON5 from 'json5'; import upath from 'upath'; import { migrateConfig } from '../../../../config/migration'; import type { AllConfig, RenovateConfig } from '../../../../config/types'; import { logger } from '../../../../logger'; +import { readFile } from '../../../../util/fs'; export async function getParsedContent(file: string): Promise { switch (upath.extname(file)) {