The justfile defines validate (yamllint + compose config check) and there are ruff/bandit dependencies declared in pixi.toml but no corresponding pixi tasks. Contributors using pixi run have no way to invoke linting or validation without knowing to fall back to just. Add lint = "ruff check ." and validate = "just validate" to complete parity.
Follow-up from #153
The justfile defines
validate(yamllint + compose config check) and there are ruff/bandit dependencies declared in pixi.toml but no corresponding pixi tasks. Contributors usingpixi runhave no way to invoke linting or validation without knowing to fall back tojust. Addlint = "ruff check ."andvalidate = "just validate"to complete parity.Follow-up from #153