All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Before
After
time.Time
Some calls of Before or After for time.Time can be simplified and it is recommended as well because the code will look simple and idiomatic.
x := !t.Before(t0)
x := t.After(t0)