Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ coverage:

format:
poetry run black .
poetry run ruff --select I --fix .
Comment thread
abhijitjavelin marked this conversation as resolved.

lint:
poetry run mypy --exclude tests javelin_sdk/
poetry run black . --check
poetry run ruff javelin_sdk/
poetry run black .
poetry run flake8 . --config=.flake8 --output-file=lint-report.json
Comment thread
abhijitjavelin marked this conversation as resolved.

test:
poetry run pytest tests
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ pytest-mock = "^3.10.0"

[tool.poetry.group.dev.dependencies]
black = "24.3.0"
ruff = "^0.0.265"
mypy = "^1.2.0"
Comment thread
abhijitjavelin marked this conversation as resolved.
flake8 = "^7.3.0"
pre-commit = "^3.3.1"
mkdocs = "^1.4.3"
mkdocstrings = {version = "0.21.2", extras = ["python"]}
Expand Down