You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the detailed output of cargo crev v --show-all is too noisy mostly because it includes many unneeded numbers due to e.g. unnecessary precision (121015 is less informative than .1m) or 0s
Below are a few suggestions re. how to make it look nicer and more informative:
replace 0 with ␣ spaces
change # downloads to whole millions (only show the fractional part if below .5m and show a max of one fractional digit, so 10345 would be .0)
change locs to thousands
add a sub-header to add unit dimension (K and M) and ∑ totals (or maybe a simple + if ∑ breaks alignment with some fonts)
The ouput with these suggestions implemented would look like following
Currently the detailed output of
cargo crev v --show-all
is too noisy mostly because it includes many unneeded numbers due to e.g. unnecessary precision (121015
is less informative than.1m
) or0
sBelow are a few suggestions re. how to make it look nicer and more informative:
0
with␣
spaces.5m
and show a max of one fractional digit, so 10345 would be.0
)loc
s to thousandsK
andM
) and∑
totals (or maybe a simple+
if∑
breaks alignment with some fonts)The ouput with these suggestions implemented would look like following
...cargo\bin
The text was updated successfully, but these errors were encountered: