CoolFace
Apppublic

thinkingEverytime/QuantOracle

sourceHugging Faceupdated 6mo agoView on Hugging Face
1likes
setup.cfg17 linesDownload Raw Back to root
1# HARD CODED IMPORTANT RULE: Keep code concise and meaningful2# - Remove unwanted/junky code and unnecessary lines3# - Each line must be valuable and to the point4# - Avoid bloated, illogical code - prefer 100 clean lines over 10000 junk lines5# - Author: Rishi Gupta6# - License: MIT7 8[tool:pytest]9testpaths = tests10python_files = test_*.py11python_classes = Test*12python_functions = test_*13 14[flake8]15max-line-length = 10016exclude = .git,__pycache__,venv,.venv,frontend/__pycache__17