File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ update-deps: ## Check pyproject.toml for changes, update the lock file if needed
4040 pdm install --dev
4141
4242check-types : # # Checks type hints in sources
43- pdm run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs src/ lsc_agent_eval/src/ lsc_eval/src/ lsc_eval/runner.py
43+ pdm run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs src/ lsc_agent_eval/src/
4444
4545format : install-deps-test # # Format the code into unified format
4646 pdm run black .
@@ -49,7 +49,7 @@ format: install-deps-test ## Format the code into unified format
4949verify : install-deps-test # # Verify the code using various linters
5050 pdm run black . --check
5151 pdm run ruff check . --per-file-ignores=tests/* :S101 --per-file-ignores=scripts/* :S101 --per-file-ignores=lsc_agent_eval/tests/* :S101
52- pdm run pylint src tests lsc_agent_eval/src lsc_agent_eval/tests lsc_eval/src/ lsc_eval/runner.py
52+ pdm run pylint src tests lsc_agent_eval/src lsc_agent_eval/tests
5353
5454requirements.txt : pyproject.toml pdm.lock # # Generate requirements.txt file containing hashes for all non-devel packages
5555 pdm export --prod --format requirements --output requirements.txt
@@ -73,10 +73,10 @@ help: ## Show this help screen
7373 @echo ' '
7474
7575pylint :
76- pdm run pylint src lsc_agent_eval/src lsc_eval/src/ lsc_eval/runner.py
76+ pdm run pylint src lsc_agent_eval/src
7777
7878pyright :
79- pdm run pyright src lsc_agent_eval/src lsc_eval/src/ lsc_eval/runner.py
79+ pdm run pyright src lsc_agent_eval/src
8080
8181docstyle :
8282 pdm run pydocstyle -v .
You can’t perform that action at this time.
0 commit comments