style(prettier): format source files

This commit is contained in:
di-sukharev
2026-04-10 15:20:27 +03:00
parent 88964cbc5e
commit 57fb52a3c5
4 changed files with 10 additions and 10 deletions

View File

@@ -31,7 +31,12 @@ const getGitRemotes = async () => {
const hasUpstreamBranch = async (): Promise<boolean> => {
try {
await execa('git', ['rev-parse', '--abbrev-ref', '--symbolic-full-name', '@{u}']);
await execa('git', [
'rev-parse',
'--abbrev-ref',
'--symbolic-full-name',
'@{u}'
]);
return true;
} catch {
return false;