Skip to content

Commit

Permalink
update linting, formatting to include tests
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 29, 2024
1 parent 6e92300 commit f4b147a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ report: # See the coverage report
.PHONY: lint
.SILENT: lint
lint: # Run the linter
mypy valorant
ruff check valorant
ruff format valorant --check
mypy valorant tests
ruff check valorant tests
ruff format valorant tests --check

.PHONY: format
.SILENT: format
format: # Format the code
ruff check valorant --fix
ruff format valorant
ruff check valorant tests --fix
ruff format valorant tests

.PHONY: test
.SILENT: test
Expand Down

0 comments on commit f4b147a

Please sign in to comment.