From f4b32240dc8b6861c7d1acb52796957fcb51f783 Mon Sep 17 00:00:00 2001 From: Abhijit L Date: Tue, 15 Jul 2025 09:18:42 +0530 Subject: [PATCH 1/3] fix: update lint command. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e2df78c..a1472aa 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,8 @@ format: poetry run ruff --select I --fix . 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 test: poetry run pytest tests From 0cd9afd57780fa26df2da90bb1ec8f6935a51a11 Mon Sep 17 00:00:00 2001 From: Abhijit L Date: Tue, 15 Jul 2025 09:25:19 +0530 Subject: [PATCH 2/3] fix: update lint command --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index a1472aa..bc4e7c4 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,6 @@ coverage: format: poetry run black . - poetry run ruff --select I --fix . lint: poetry run black . From dffad7eb8584392adb44a6015eae1e8a9bbce5fd Mon Sep 17 00:00:00 2001 From: Abhijit L Date: Tue, 15 Jul 2025 09:29:31 +0530 Subject: [PATCH 3/3] fix: update dependencies --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a270327..48e3b17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" +flake8 = "^7.3.0" pre-commit = "^3.3.1" mkdocs = "^1.4.3" mkdocstrings = {version = "0.21.2", extras = ["python"]}