소스 검색

Combine invocations of ruff for src and tests

nosoop 10 달 전
부모
커밋
40065e5da7
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      .justfile

+ 2 - 4
.justfile

@@ -9,7 +9,5 @@ test-extended:
   pytest tests -m extended
 
 format:
-  ruff check src --select I001 --fix
-  ruff format src/smgdc
-  ruff check tests --select I001 --fix
-  ruff format tests
+  ruff check src tests --select I001 --fix
+  ruff format src tests