repo-review icon indicating copy to clipboard operation
repo-review copied to clipboard

Apply same formatting/style in `--list-all` as in the main check command

Open jack-mcivor opened this issue 6 months ago • 1 comments

The main command applies some nice styling

Family1:
├── C001 Check descr ✅
└── C002 Check descr ✅

Family2:
├── D001 Check descr ✅
└── D002 Check descr ✅

The --list-all option provides similar information, but styled differently

  # Family1
  "C001", # Check descr
  "C002", # Check descr
  # Family2
  "D001", # Check descr
  "D002", # Check descr

Is there a reason for the difference? I prefer the first style - it might be best to just use that (without the trailing tick/cross/skipped mark)? Really minor thing, just curious

jack-mcivor avatar Jun 19 '25 10:06 jack-mcivor

This is intended to be easy to copy/paste into your pyproject.toml, so you can add it to skips or includes.

henryiii avatar Sep 27 '25 04:09 henryiii