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
chore: replace dev-deps with per-tool check targets (#2149)
When developing locally I always comment out dev-deps due to the failed
soda command. Today I did a grepped through the repo and it seems soda
is no longer used.
- Remove unused `soda` command
- Could not find any reference to this
- Remove `dev-deps` target that installed all cmds
- Add dedicated check targets:
- `check-gosec` installs gosec if missing
- `check-staticcheck` installs staticcheck if missing
- `check-exhaustive` installs exhaustive if missing
- `check-oapi-codegen` installs oapi-codegen if missing
- Update existing targets to depend on new check targets:
- `sec` depends on `check-gosec`
- `unused` depends on `check-staticcheck`
- `static` depends on `check-staticcheck` and `check-exhaustive`
- `generate` depends on `check-oapi-codegen`
- Adjust `.PHONY` declarations to include new check targets
---------
Co-authored-by: Chris Stockton <[email protected]>
0 commit comments