Skip to content

Commit 6102d2e

Browse files
committed
fixed makefile commands
1 parent cfe9190 commit 6102d2e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@ install-full: ## Install dependencies
1919

2020
lint: ## Run code linters
2121
black --check ellar_jwt tests
22-
ruff check ellar_jwt
23-
ruff check tests
22+
ruff check ellar_jwt tests
2423
mypy ellar_jwt
2524

2625
fmt format: ## Run code formatters
2726
black ellar_jwt tests
28-
ruff check --fix ellar_jwt
29-
ruff check --fix tests
27+
ruff check --fix ellar_jwt tests
3028

3129
test: ## Run tests
3230
pytest tests

0 commit comments

Comments
 (0)