From 838dd3dd261607df3984fde05b4919f7a71795ec Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Thu, 29 Aug 2024 10:48:42 +0000 Subject: [PATCH] just: make `just lint` run all steps, not fail on first error --- .justfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.justfile b/.justfile index 90dc01e25..91953dd1f 100644 --- a/.justfile +++ b/.justfile @@ -16,5 +16,10 @@ @deptry: pre-commit run deptry --hook-stage manual --all-files -lint: isort black ruff flake8 mypy deptry - +@lint: + -just isort + -just black + -just ruff + -just flake8 + -just mypy + -just deptry