diff options
author | HampusM <hampus@hampusmat.com> | 2021-05-29 20:21:44 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-05-29 20:21:44 +0200 |
commit | 6edf567693ab885bcbab0a894001e1bcbca939c1 (patch) | |
tree | a6e082d84c9f36a84bdb15b7c1f9f39895b98c3a /src | |
parent | 7216f9cc82ccfc72d66bff0e8cbb336cf95d646d (diff) |
Added missing semicolons and deleted trailing commas
Diffstat (limited to 'src')
-rw-r--r-- | src/api/git.js | 14 | ||||
-rw-r--r-- | src/frontend/views/RepositoryLog.vue | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/api/git.js b/src/api/git.js index 3697f98..97d38ac 100644 --- a/src/api/git.js +++ b/src/api/git.js @@ -16,7 +16,7 @@ function addRepoDirSuffix(repo_name) async function getLog(base_dir, repo_name) { - const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`) + const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`); const walker = git.Revwalk.create(repo); walker.pushHead(); @@ -40,7 +40,7 @@ async function getLog(base_dir, repo_name) async function getTimeSinceLatestCommit(base_dir, repo_name) { - const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`) + const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`); const master_commit = await repo.getMasterCommit(); return formatDistance(new Date(), master_commit.date()); @@ -120,7 +120,7 @@ async function getCommit(base_dir, repo_name, commit_oid) { repo_name = addRepoDirSuffix(repo_name); - const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`) + const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`); const commit = await repo.getCommit(commit_oid); const diff = (await commit.getDiff())[0]; const all_patches = (await diff.toBuf(1)).split('\n'); @@ -192,7 +192,7 @@ async function getCommit(base_dir, repo_name, commit_oid) new_start: prev_hunk.newStart(), new_lines: prev_hunk.newLines(), old_start: prev_hunk.oldStart(), - old_lines: prev_hunk.oldLines(), + old_lines: prev_hunk.oldLines() }, parseHunkAddDel(patch_content.slice(hunks_data[0], hunk_header_index)))); hunks_data[2] = hunks_data + patch_content.slice(hunks_data[0], hunk_header_index).length; @@ -208,7 +208,7 @@ async function getCommit(base_dir, repo_name, commit_oid) new_start: prev_hunk.newStart(), new_lines: prev_hunk.newLines(), old_start: prev_hunk.oldStart(), - old_lines: prev_hunk.oldLines(), + old_lines: prev_hunk.oldLines() }, parseHunkAddDel(patch_content.slice(hunks_data[0], patch_end)))); arr.push({ @@ -237,7 +237,7 @@ async function getCommit(base_dir, repo_name, commit_oid) async function doesCommitExist(base_dir, repo_name, commit_oid) { - const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`) + const repo = await git.Repository.openBare(`${base_dir}/${repo_name}`); try { await repo.getCommit(commit_oid); @@ -304,7 +304,7 @@ function connectToGitHTTPBackend(base_dir, req, reply) req.body.on("close", () => git_pack.stdin.end()); } - git_pack.on("error", (err) => console.log(err)) + git_pack.on("error", (err) => console.log(err)); git_pack.stderr.on("data", (stderr) => console.log(stderr)); git_pack.stdout.on("data", (data) => diff --git a/src/frontend/views/RepositoryLog.vue b/src/frontend/views/RepositoryLog.vue index d9d1696..3adb6c2 100644 --- a/src/frontend/views/RepositoryLog.vue +++ b/src/frontend/views/RepositoryLog.vue @@ -87,5 +87,5 @@ export default { ... toRefs(state) }; } -} +}; </script>
\ No newline at end of file |