Simple, intuitive CLI framework for Go pkg.go.dev/go.followtheprocess.codes/cli
go cli
0

Configure Feed

Select the types of activity you want to include in your feed.

Format mise.toml

Tom Fleet (Apr 25, 2026, 8:08 AM +0100) ed047d4d be33f52b

+9 -9
+9 -9
mise.toml
··· 42 42 description = "Run the linters and auto-fix if possible" 43 43 depends = ["fmt"] 44 44 run = [ 45 - "golangci-lint run --fix", 46 - "typos", 47 - "nilaway ./...", 45 + "golangci-lint run --fix", 46 + "typos", 47 + "nilaway ./...", 48 48 ] 49 49 sources = ["**/*.go", ".golangci.yml"] 50 50 ··· 56 56 [tasks.demo] 57 57 description = "Render the demo gifs in parallel" 58 58 run = [ 59 - 'for file in ./docs/src/*.tape; do vhs "$file" & done; wait', 60 - "freeze ./examples/cover/main.go --config ./docs/src/freeze.json --output ./docs/img/demo.png --show-line-numbers", 59 + 'for file in ./docs/src/*.tape; do vhs "$file" & done; wait', 60 + "freeze ./examples/cover/main.go --config ./docs/src/freeze.json --output ./docs/img/demo.png --show-line-numbers", 61 61 ] 62 62 sources = ["./docs/src/*.tape", "**/*.go"] 63 63 outputs = ["./docs/img/*.gif", "./docs/img/demo.png"] ··· 87 87 [tasks.clean] 88 88 description = "Remove build artifacts and other clutter" 89 89 run = [ 90 - "go clean ./...", 91 - "rm -rf *.out", 90 + "go clean ./...", 91 + "rm -rf *.out", 92 92 ] 93 93 94 94 [tasks.update] 95 95 description = "Updates dependencies in go.mod and go.sum" 96 96 run = [ 97 - "go get -u ./...", 98 - "go mod tidy", 97 + "go get -u ./...", 98 + "go mod tidy", 99 99 ]