mirror of https://github.com/Nonannet/pyhoff.git
19 lines
403 B
INI
19 lines
403 B
INI
[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
|
|
|
|
# Enable specific plugins or options
|
|
# Example: Enabling flake8-docstrings
|
|
select = C,E,F,W,D |