PhyscalX's picture
Ad model:nova-d48w1024-osp480
ec9e514
raw
history blame contribute delete
551 Bytes
[flake8]
max-line-length = 100
ignore =
# whitespace before ':' (conflicted with Black)
E203,
# ambiguous variable name
E741,
# β€˜from module import *’ used; unable to detect undefined names
F403,
# name may be undefined, or defined from star imports: module
F405,
# redefinition of unused name from line N
F811,
# undefined name
F821,
# line break before binary operator
W503,
# line break after binary operator
W504
# module imported but unused
per-file-ignores = __init__.py: F401