Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ __pycache__/
*.py[cod]
*$py.class

# Emacs stuff
*#
*~
.\#*
\#*\#
.emacs.desktop
.emacs.desktop.lock
*.elc
auto-save-list/
tramp

# C extensions
*.so

Expand Down Expand Up @@ -71,4 +82,7 @@ lispcore.py
.envrc
poetry.lock
**/*.~undo-tree~
.nrepl-port
.nrepl-port
.DS_Store
.dir-locals.el
process_pool_repl.lpy
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ lispcore.py:
clean:
@rm -rf ./lispcore.py

.PHONY: clean-cache
clean-cache:
@rm -rf .pytest_cache .mypy_cache .ruff_cache .tox .hypothesis junit htmlcov
@rm -f .coverage .coverage.* coverage.xml
@find . -name "*.lpyc" -delete
@find . -name "__pycache__" -type d -prune -exec rm -rf {} +


.PHONY: pypy-shell
pypy-shell:
Expand Down
Loading