Skip to content

Commit 53ea687

Browse files
committed
Add comments to exported consts
golint: exported const SolutionFilename should have comment or be unexported [Warning]
1 parent 642f601 commit 53ea687

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

workspace/solution.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ import (
1010
"time"
1111
)
1212

13+
// IgnoreSubdir is the name of the hidden directory to be ignored on submit.
1314
const IgnoreSubdir = ".exercism"
15+
16+
// SolutionFilename is the name of the solution metadata file.
1417
const SolutionFilename = "solution.json"
1518

1619
var solutionRealPath = filepath.Join(IgnoreSubdir, SolutionFilename)

0 commit comments

Comments
 (0)