Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ lintlify: venv
venv/bin/python -m lintlify.main

.PHONY: lint
lint: broken-links venv mypy lintlify format-check
lint: broken-links mypy lintlify format-check

.PHONY: ci
ci: broken-links mypy lintlify format-check test

.PHONY: format
format: venv
Expand All @@ -45,7 +48,7 @@ format-check: venv
venv/bin/ruff format --check

.PHONY: mypy
mypy:
mypy: venv
venv/bin/mypy --strict scripts/*.py
venv/bin/mypy --strict --ignore-missing-imports -p lintlify

Expand Down
Loading