-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(makefile): update
- Loading branch information
Showing
4 changed files
with
28 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": ["ms-python.python", "charliermarsh.ruff"] | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.python" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
poetry-install: | ||
poetry install --sync | ||
.PHONY: test | ||
|
||
poetry-up: | ||
poetry up --latest | ||
install-all: install pc-install | ||
|
||
install: | ||
poetry install --sync | ||
|
||
pre-commit-install: | ||
pc-install: | ||
pre-commit install | ||
|
||
pre-commit-up: | ||
pre-commit autoupdate | ||
update-latest: | ||
poetry up --latest | ||
|
||
checks: pc-run lint | ||
|
||
pre-commit-run: | ||
pc-run: | ||
pre-commit run -a | ||
|
||
lint: | ||
poetry run poe lint | ||
|
||
tests: | ||
test: | ||
poetry run pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters