Files
MidasEngine/.flake8
2024-12-13 02:43:47 -05:00

20 lines
350 B
INI

[flake8]
max-line-length = 88
# Directories to exclude from linting
exclude =
venv,
.git,
__pycache__
# Error codes to ignore
# E203, W503 are ignored for compatibility with Black formatting
# E501 is ignored because max-line-length is set
# F841 is useful for placeholders or debugging
ignore =
E203,
W503,
E501,
F841