mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 09:13:06 +00:00
20 lines
447 B
Plaintext
20 lines
447 B
Plaintext
|
[flake8]
|
||
|
extend-ignore =
|
||
|
# "undefined name": leave this to mypy.
|
||
|
F821,
|
||
|
|
||
|
# These get confused by the C code we have embedded in docstrings in
|
||
|
# various places.
|
||
|
# "indentation contains mixed spaces and tabs"
|
||
|
E101,
|
||
|
# "indentation contains tabs"
|
||
|
W191,
|
||
|
|
||
|
# For the following, we live by Black.
|
||
|
# "whitespace before ':'"
|
||
|
E203,
|
||
|
# "line too long"
|
||
|
E501,
|
||
|
# "line break before binary operator"
|
||
|
W503
|