Skip to content

Commit d94afec

Browse files
committed
exclude lsc_eval for linting check temporarily
1 parent 0d38cdf commit d94afec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ update-deps: ## Check pyproject.toml for changes, update the lock file if needed
4040
pdm install --dev
4141

4242
check-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

4545
format: 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
4949
verify: 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

5454
requirements.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

7575
pylint:
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

7878
pyright:
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

8181
docstyle:
8282
pdm run pydocstyle -v .

0 commit comments

Comments
 (0)