Skip to content

Commit 3966a71

Browse files
LeadGoEngineerPaperclip-Paperclip
andcommitted
docs: fix MD010 hard-tabs in go-test output blocks
CI's markdown-lint check (markdownlint-cli2 v0.13.0) flagged literal tabs from captured `go test` output inside fenced code blocks in the three worked examples. Replace tabs with spaces; visual alignment is preserved, content is unchanged. Co-Authored-By: Paperclip <[email protected]>
1 parent 0f603c7 commit 3966a71

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/example-crono.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ EXPORT_CLI_BIN=/tmp/crono-export go test -tags=compat ./...
183183
**Expected:**
184184

185185
```
186-
ok github.com/quantcli/crono-export-cli 0.010s
187-
ok github.com/quantcli/crono-export-cli/cmd 0.005s
186+
ok github.com/quantcli/crono-export-cli 0.010s
187+
ok github.com/quantcli/crono-export-cli/cmd 0.005s
188188
...
189189
```
190190

docs/example-liftoff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ LIFTOFF_EXPORT_BIN=/tmp/liftoff-export go test -tags=compat ./...
164164
**Expected:**
165165

166166
```
167-
ok github.com/quantcli/liftoff-export-cli 0.003s
167+
ok github.com/quantcli/liftoff-export-cli 0.003s
168168
```
169169

170170
The `compat` suite covers CONTRACT.md §4 parse-level conformance (the `--format` flag, `UnknownFormatFails`, `FlagValidationIsHermetic`) across all four data-producing subcommands (`workouts list`, `workouts stats`, `bodyweights list`, `bodyweights stats`). Data-path subtests (`--format json` with live data) are skipped because the suite does not provision a Liftoff OAuth token; the parse-level subtests run without credentials.

docs/example-withings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ WITHINGS_EXPORT_BIN=/tmp/withings-export go test -tags=compat ./...
196196
**Expected:**
197197

198198
```
199-
ok github.com/quantcli/withings-export-cli 0.003s
200-
ok github.com/quantcli/withings-export-cli/internal/auth 0.003s
199+
ok github.com/quantcli/withings-export-cli 0.003s
200+
ok github.com/quantcli/withings-export-cli/internal/auth 0.003s
201201
```
202202

203203
The suite covers CONTRACT.md §4 (format flag surface, `--format json` returns a JSON array, `--format csv` returns a header row, default equals `--format markdown`) and §7 (hermeticity) across all five data subcommands. All cells in the CONTRACT.md Status table for `withings-export` are **machine**-attested.

0 commit comments

Comments
 (0)