Skip to content

Commit 469485b

Browse files
author
Scott Arbeit
committed
Linter updates.
1 parent ed44788 commit 469485b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

git-sizer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,12 +336,12 @@ func mainImplementation(ctx context.Context, stdout, stderr io.Writer, args []st
336336
if err != nil {
337337
return fmt.Errorf("error getting Git directory path: %w", err)
338338
}
339-
339+
340340
gitDirSize, err := sizes.CalculateGitDirSize(gitDir)
341341
if err != nil {
342342
return fmt.Errorf("error calculating Git directory size: %w", err)
343343
}
344-
344+
345345
historySize.GitDirSize = gitDirSize
346346

347347
if jsonOutput {

sizes/sizes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ type HistorySize struct {
210210

211211
// The tree with the maximum expanded submodule count.
212212
MaxExpandedSubmoduleCountTree *Path `json:"max_expanded_submodule_count_tree,omitempty"`
213-
214-
// The actual size of the .git directory on disk
213+
214+
// The actual size of the .git directory on disk.
215215
GitDirSize counts.Count64 `json:"git_dir_size"`
216216
}
217217

0 commit comments

Comments
 (0)