Run prettier formatter

This commit is contained in:
Brian Bowman
2022-07-19 04:37:38 -05:00
parent e9df0f17db
commit eb9aa34323
67 changed files with 1157 additions and 1071 deletions

View File

@@ -3,7 +3,7 @@ import { getConfig } from './configuration'
export async function getGameExecutable() {
const config = await getConfig()
if(!config.game_install_path) {
if (!config.game_install_path) {
return null
}
@@ -14,7 +14,7 @@ export async function getGameExecutable() {
export async function getGameFolder() {
const config = await getConfig()
if(!config.game_install_path) {
if (!config.game_install_path) {
return null
}
@@ -24,4 +24,4 @@ export async function getGameFolder() {
const path = pathArr.join('/')
return path
}
}