pyladoc/.flake8

22 lines
445 B
Plaintext
Raw Permalink Normal View History

2025-03-28 12:30:08 +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,
2025-08-01 10:08:18 +00:00
.conda,
.venv,
venv,
docs/source/api
2025-03-28 12:30:08 +00:00
# Enable specific plugins or options
# Example: Enabling flake8-docstrings
select = C,E,F,W,D