Skip to content

Commit

Permalink
make clean & gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Feb 20, 2023
1 parent a104cd3 commit 10081d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,6 @@ lightning_logs
*.gz
.DS_Store
.*_submit.py

Formatting
.ruff_cache/
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ docs: clean

clean:
# clean all temp runs
rm -rf $(shell find . -name "mlruns")
rm -rf .mypy_cache
rm -rf .pytest_cache
rm -rf .ruff_cache
rm -rf build
rm -rf dist
rm -rf src/*.egg-info
rm -rf ./docs/build
rm -rf ./docs/source/**/generated
rm -rf ./docs/source/api

0 comments on commit 10081d9

Please sign in to comment.