Added pylintrc

This commit is contained in:
Felipe Martin 2017-01-18 08:15:04 +01:00
parent 5fc68092d8
commit 2928baa002
1 changed files with 22 additions and 0 deletions

22
pylintrc Normal file
View File

@ -0,0 +1,22 @@
[MASTER]
ignore = .git
[FORMAT]
max-line-length=100
max-module-lines=2000
[DESIGN]
max-attributes=20
max-locals=30
max-branches=20
max-nested-blocks=8
max-returns=8
max-args=8
[MESSAGES CONTROL]
disable =
locally-disabled, locally-enabled, redefined-outer-name,
invalid-name, protected-access, star-args, fixme, broad-except,
redefined-builtin, missing-docstring,
E1101, W0141, W0110,
R0903