25 lines
No EOL
482 B
INI
25 lines
No EOL
482 B
INI
[flake8]
|
|
max-line-length=120
|
|
ignore=D10,D203,D204
|
|
|
|
[pycodestyle]
|
|
max-line-length=120
|
|
ignore=D10,D203,D204
|
|
|
|
[pylint.DESIGN]
|
|
max-args=16
|
|
min-public-methods=0
|
|
max-attributes=16
|
|
max-locals=64
|
|
|
|
[pylint.FORMAT]
|
|
max-line-length=120
|
|
|
|
[pylint.MESSAGE CONTROL]
|
|
disable=missing-module-docstring, missing-function-docstring, missing-class-docstring, relative-beyond-top-level, too-few-public-methods, import-error
|
|
|
|
[pylint.SIMILARITIES]
|
|
min-similarity-lines=6
|
|
|
|
[pydocstyle]
|
|
ignore=D10,D203,D204 |