forked from viewflow/django-fsm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[MASTER] | ||
persistent=yes | ||
|
||
[MESSAGES CONTROL] | ||
#enable= | ||
#disable= | ||
|
||
[REPORTS] | ||
output-format=parseable | ||
|
||
[TYPECHECK] | ||
|
||
# Tells whether missing members accessed in mixin class should be ignored. A | ||
# mixin class is detected if its name ends with "mixin" (case insensitive). | ||
ignore-mixin-members=yes | ||
|
||
# List of classes names for which member attributes should not be checked | ||
# (useful for classes with attributes dynamically set). | ||
ignored-classes=SQLObject | ||
|
||
# When zope mode is activated, add a predefined set of Zope acquired attributes | ||
# to generated-members. | ||
zope=no | ||
|
||
# List of members which are set dynamically and missed by pylint inference | ||
# system, and so shouldn't trigger E0201 when accessed. | ||
generated-members=REQUEST,acl_users,aq_parent | ||
|
||
|
||
[VARIABLES] | ||
init-import=no | ||
|
||
|
||
[SIMILARITIES] | ||
min-similarity-lines=4 | ||
ignore-comments=yes | ||
ignore-docstrings=yes | ||
|
||
|
||
[MISCELLANEOUS] | ||
notes=FIXME,XXX,TODO | ||
|
||
|
||
[FORMAT] | ||
max-line-length=160 | ||
max-module-lines=500 | ||
indent-string=' ' | ||
|
||
|
||
[DESIGN] | ||
max-args=5 | ||
max-locals=15 | ||
max-returns=6 | ||
max-branchs=12 | ||
max-statements=50 | ||
max-parents=7 | ||
max-attributes=7 | ||
min-public-methods=2 | ||
max-public-methods=20 | ||
|
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