13 lines
353 B
INI
13 lines
353 B
INI
[flake8]
|
|
select = B,B9,C,D,DAR,E,F,N,RST,S,W
|
|
ignore = E203,E501,RST201,RST203,RST301,W503,S410,S320
|
|
max-line-length = 120
|
|
max-complexity = 30
|
|
docstring-convention = google
|
|
rst-roles = class,const,func,meth,mod,ref
|
|
rst-directives = deprecated
|
|
|
|
per-file-ignores =
|
|
# prefer naming tests descriptively rather than forcing comments
|
|
tests/*:S101,D103
|