Updating .gitignore and adding a bash script to format the code with black

This commit is contained in:
Luke Robles 2022-01-29 15:05:11 -08:00
parent f880a01bbb
commit 7156390e69
3 changed files with 9 additions and 7 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ dragon_bot_env
__pycache__
*.csv
*env
.syncthing*

1
format_code.sh Executable file
View File

@ -0,0 +1 @@
docker run -ti -v $(pwd):/tmp/python python bash -c "cd /tmp/python ; pip install black; black ."