Files
jellyfin-packaging/.flake8

10 lines
412 B
Plaintext
Raw Normal View History

2024-02-16 02:57:17 -05:00
[flake8]
# We ignore the following errors:
# * W503 (line break before binary operator): Black moves these to new lines
# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this
# * E203 (whitespace before ':'): Black recommends this as disabled
2024-02-16 03:03:46 -05:00
ignore = W503, E501
2024-02-16 02:57:17 -05:00
extend-ignore = E203
# Set the max line length to 88 for Black
max-line-length = 88