1
0
mirror of synced 2024-12-04 19:17:55 +01:00
jubeatools/.flake8

37 lines
952 B
Plaintext
Raw Normal View History

2021-05-04 13:39:40 +02:00
[flake8]
ignore =
# First category : "ffs flake8 let black do its own formatting"
2021-05-04 13:39:40 +02:00
# whitespace before ':'
E203
# blank line contains whitespace
W293
# expected 2 blank lines, found 1
E302
# break after binary op.
W503
# Second category : "I know what I'm doing leave me alone"
# f-string is missing placeholders
F541
2021-05-04 13:39:40 +02:00
# do not assign a lambda expression, use a def
E731
exclude =
.git
.hypothesis
.mypy_cache
.pytest_cache
.vscode
2021-05-04 13:39:40 +02:00
__pycache__
docs
2021-05-04 13:39:40 +02:00
dist
build
per-file-ignores =
# Allow re-exporting in __init__.py files
__init__.py: F401
# Allow star imports in test example files
example*.py: F405, F403
# Silence weird false positive on inline comments ...
jubeatools/formats/jubeat_analyser/symbols.py: E262
# there's a field named "l" in a marshmallow schema
jubeatools/formats/memon/memon.py: E741
max-line-length = 120