Updated README.md
This commit is contained in:
parent
02d63cc703
commit
087aa580a4
11
README.md
11
README.md
@ -38,8 +38,17 @@ https://python-tcod.readthedocs.io/en/latest/
|
|||||||
## Setup and Notes
|
## Setup and Notes
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
#make the virtual environment
|
||||||
python3 -m venv venv
|
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
|
heapq is a thing for the speed sorting
|
||||||
|
Loading…
x
Reference in New Issue
Block a user