We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb83c6d commit fd00b85Copy full SHA for fd00b85
Makefile
@@ -38,9 +38,10 @@ test-all: install
38
.PHONY: lint
39
lint: #! Run type analysis and linting checks
40
lint: install
41
- poetry run mypy ldclient
42
- poetry run isort --check --atomic ldclient contract-tests
43
- poetry run pycodestyle ldclient contract-tests
+ @mkdir -p .mypy_cache
+ @poetry run mypy ldclient
+ @poetry run isort --check --atomic ldclient contract-tests
44
+ @poetry run pycodestyle ldclient contract-tests
45
46
#
47
# Documentation generation
0 commit comments