fix lint errors

This commit is contained in:
Labhansh Agrawal 2023-11-15 11:48:34 +05:30
parent cb65dd11f9
commit 947bf34650
3 changed files with 8 additions and 8 deletions

View file

@ -14,8 +14,8 @@ const registryUrl = registryUrlModule();
const applicationDirectory = process.env.XDG_CONFIG_HOME
? path.join(process.env.XDG_CONFIG_HOME, 'Hyper')
: process.platform === 'win32'
? path.join(process.env.APPDATA!, 'Hyper')
: path.join(os.homedir(), '.config', 'Hyper');
? path.join(process.env.APPDATA!, 'Hyper')
: path.join(os.homedir(), '.config', 'Hyper');
const devConfigFileName = path.join(__dirname, `../hyper.json`);