Problem
Line 24 of root.go uses a tab character on the line 2. gh devlake configure full while surrounding lines use 2-space indent:
`
- gh devlake deploy local # spin up DevLake with Docker Compose
- gh devlake configure full # create connections + scopes + project
- gh devlake status # verify everything is healthy
`
This causes misalignment when users run gh devlake --help in terminals with different tab-width settings (4 vs 8 characters).
Fix
Replace the tab on line 24 with two spaces to match the rest of the list.
Acceptance Criteria
Problem
Line 24 of
root.gouses a tab character on the line2. gh devlake configure fullwhile surrounding lines use 2-space indent:`
`
This causes misalignment when users run
gh devlake --helpin terminals with different tab-width settings (4 vs 8 characters).Fix
Replace the tab on line 24 with two spaces to match the rest of the list.
Acceptance Criteria
gh devlake --helpoutput is visually aligned in all terminalsgo build ./...passes