Updated README.md

This commit is contained in:
Kayne Ruse 2025-03-29 09:08:12 +11:00
parent 02d63cc703
commit 087aa580a4
3 changed files with 13 additions and 4 deletions

View File

@ -38,8 +38,17 @@ https://python-tcod.readthedocs.io/en/latest/
## Setup and Notes
```bash
#make the virtual environment
python3 -m venv venv
./venv/bin/tcod
#useful pre-commit hook
lint_results=$(echo "$(grep -Pro '[\t]+$' */*.py)")
lint_errors=$(echo "$lint_results" | wc -w)
if [ $lint_errors -gt 0 ]; then
echo "pre-commit lint errors found: $lint_errors"
echo "$lint_results"
fi
exit $lint_errors
```
heapq is a thing for the speed sorting