Last active
October 29, 2019 05:45
-
-
Save blankdots/5ec65edcd8a2bd29a4e39fd55562574c to your computer and use it in GitHub Desktop.
pylama config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[pylama] | |
linters = mccabe,pep257,pep8,pyflakes | |
ignore = D203,D212,D213,D404,D406,D407,D408,D409,D100,D104 | |
max_line_length = 160 | |
[pylama:pycodestyle] | |
max_line_length = 300 | |
[pylama:pylint] | |
max_line_length = 300 | |
disable = R | |
[pylama:flake8] | |
max_line_length = 300 | |
[pylama:pep8] | |
max_line_length = 300 | |
[pylama:mccabe] | |
max-complexity = 15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment