Spaces:
Running
on
L40S
Running
on
L40S
File size: 551 Bytes
ec9e514 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[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
|