Skip to content

Commit d9491ed

Browse files
committed
Fix lint offenses
1 parent 91d6408 commit d9491ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/uninstaller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ export const removePrefix = async (appName: string, runner: Runner) => {
5555
rmSync(winePrefix, { recursive: true })
5656
}
5757

58-
export const removeFixFile = (appName: string, runner: Runner) => {
58+
const removeFixFile = (appName: string, runner: Runner) => {
5959
const fixFilePath = join(fixesPath, `${appName}-${storeMap[runner]}.json`)
6060
if (existsSync(fixFilePath)) {
6161
rmSync(fixFilePath)
6262
}
6363
}
6464

65-
export const removeSettingsAndLogs = (appName: string) => {
65+
const removeSettingsAndLogs = (appName: string) => {
6666
const removeIfExists = (filename: string) => {
6767
logInfo(`Removing ${filename}`, LogPrefix.Backend)
6868
const gameSettingsFile = join(gamesConfigPath, filename)

0 commit comments

Comments
 (0)