blob: 6a6b5cfe7757b8d6dd15800bef90dacd1084e41b (
plain)
1
2
3
4
5
6
7
8
9
10
|
[flake8]
ban-relative-imports = true
inline-quotes = "
exclude =
jsonschema/__init__.py
jsonschema/_reflect.py
ignore =
B008, # Barring function calls in default args. Ha, no.
B306, # See https://github.com/PyCQA/flake8-bugbear/issues/131
W503, # (flake8 default) old PEP8 boolean operator line breaks
|