Skip to content

Commit

Permalink
adding gitignore and precommit config
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Adler committed Aug 26, 2024
1 parent bd1dd13 commit 863a91d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/
*.pyc
10 changes: 10 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
repos:
- repo: https://github.com/python/black
rev: 23.9.1 # Use the latest version or a specific version
hooks:
- id: black
args: [--line-length, '79']
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
annotated-types==0.7.0
bidict==0.23.1
black==23.9.1
blinker==1.8.2
cffi==1.16.0
click==8.1.7
Expand All @@ -11,6 +12,7 @@ Flask-SocketIO==5.3.6
gunicorn==22.0.0
h11==0.14.0
iniconfig==2.0.0
isort==5.13.2
itsdangerous==2.2.0
Jinja2==3.1.4
lazy-model==0.2.0
Expand Down

0 comments on commit 863a91d

Please sign in to comment.