This commit is contained in:
2025-10-05 01:22:31 +02:00
parent a05bbbe29c
commit fc2de5bd46
3 changed files with 7 additions and 2 deletions

3
.flake8 Normal file
View File

@@ -0,0 +1,3 @@
[flake8]
max-line-length = 88
extend-ignore = E203, W503

3
.gitignore vendored
View File

@@ -3,5 +3,4 @@
testing.py testing.py
/databases/ /databases/
.venv .venv
.env
.env

3
.pylintrc Normal file
View File

@@ -0,0 +1,3 @@
[MASTER]
disable = C0114, C0115, C0116 # disable missing docstring warnings
max-line-length = 88