2025-02-16 22:49:16 +00:00
|
|
|
[flake8]
|
|
|
|
# Specify the maximum allowed line length
|
|
|
|
max-line-length = 88
|
|
|
|
|
|
|
|
# Ignore specific rules
|
|
|
|
# For example, E501: Line too long, W503: Line break before binary operator
|
|
|
|
ignore = E501, W503, W504
|
|
|
|
|
|
|
|
# Exclude specific files or directories
|
|
|
|
exclude =
|
|
|
|
.git,
|
|
|
|
__pycache__,
|
|
|
|
build,
|
|
|
|
dist,
|
|
|
|
.conda
|
2025-02-17 13:57:03 +00:00
|
|
|
.venv
|
2025-05-13 07:39:05 +00:00
|
|
|
venv
|
2025-02-16 22:49:16 +00:00
|
|
|
|
|
|
|
# Enable specific plugins or options
|
|
|
|
# Example: Enabling flake8-docstrings
|
2025-02-17 08:32:10 +00:00
|
|
|
select = C,E,F,W,D
|