Skip to content

Commit

Permalink
update boilerplate to include new pakage (gensim) and formatting conf…
Browse files Browse the repository at this point in the history
…ig for ruff, black and mypy
  • Loading branch information
truonghm committed Aug 11, 2023
1 parent b97afb7 commit 0419d41
Show file tree
Hide file tree
Showing 3 changed files with 1,894 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,15 @@ env:
env-reset:
rm -rf $(CONDA_ENV_PATH)
make env

format:
black src --config pyproject.toml
ruff src --fix --config pyproject.toml

## Run checks (ruff + test)
check:
ruff check src --config pyproject.toml
black --check src --config pyproject.toml

type:
mypy src --config-file pyproject.toml
Loading

0 comments on commit 0419d41

Please sign in to comment.