Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
yrming committed Dec 28, 2023
1 parent c688438 commit 6d37433
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"editor.formatOnSave": true,
"editor.formatOnSave": true
}
6 changes: 3 additions & 3 deletions src/commands/starter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ export class StarterCommands extends BaseCommands {
default:
break
}
if (config.globalNeedsGitInit) {
if (config.globalNeedsGitInit)
await execa('git', ['init', `${projectPath}`])
}

if (config.globalNeedsInstall) {
await window.withProgress({
location: ProgressLocation.Notification,
}, async (progress) => {
progress.report({
message: 'Installing dependencies...',
});
})
await installDependencies({
cwd: projectPath,
silent: true,
Expand Down

0 comments on commit 6d37433

Please sign in to comment.