From 2176c590e6f20d77a5abeb53632cb206c9de8b33 Mon Sep 17 00:00:00 2001 From: Kev Date: Thu, 15 Aug 2024 15:40:28 -0400 Subject: [PATCH] Allow lint script to format as well as check the code --- scripts/lint | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/lint b/scripts/lint index 9b5b1df..c13df0e 100755 --- a/scripts/lint +++ b/scripts/lint @@ -4,4 +4,5 @@ set -e cd "$(dirname "$0")/.." -ruff check . --fix +ruff format . +ruff check . --fix \ No newline at end of file