Skip to main content

ts: format before linting

ID
4e7b805
date
2026-04-12 06:27:30+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
80b710e
message
ts: format before linting
changed files
1 file, 5 additions, 5 deletions

Changed files

ts (2467) → ts (2475)

diff --git a/ts b/ts
index 4a9d59a..617e330 100755
--- a/ts
+++ b/ts
@@ -13,13 +13,13 @@ function run_python_tests() {
     fi
 
     # Run ruff to do Python formatting
-    print_info "-> ruff check --fix"
-    ruff check --fix .
-
-    echo ""
-
     print_info "-> ruff format"
     ruff format .
+    
+    echo ""
+    
+    print_info "-> ruff check --fix"
+    ruff check --fix .
 
     echo ""