Closed effigies closed 3 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 87.60%. Comparing base (
1f1d945
) to head (fa325da
). Report is 7 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Keeping it short and sweet.Okay, I threw a few in here. Started playing around with https://knip.dev to see if it could detect and remove dead types (it can't). Looks like eslint might be able to, but I didn't really try to get that working. Started playing withdeno lint
, and it can do a couple fixes. Was able to write anawk
script to fixprefer-const
.One thing I noticed was we have a function to ask for environment variable permissions, but we don't use it because
Deno.env.get()
does it for us. I realized we could reduce the need for that check forFORCE_COLOR
in interactive cases by switching the order of the short-circuit.