|
|
|
@ -3,6 +3,12 @@ |
|
|
|
|
# not include "unused_" and "ignored_" by default? |
|
|
|
|
dummy-variables-rgx=^ignored_|^unused_ |
|
|
|
|
|
|
|
|
|
[DESIGN] |
|
|
|
|
# NOTE(nathaniel): Not particularly attached to this value; it just seems to |
|
|
|
|
# be what works for us at the moment (excepting the dead-code-walking Beta |
|
|
|
|
# API). |
|
|
|
|
max-args=6 |
|
|
|
|
|
|
|
|
|
[MISCELLANEOUS] |
|
|
|
|
# NOTE(nathaniel): We are big fans of "TODO(<issue link>): " and |
|
|
|
|
# "NOTE(<username or issue link>): ". We do not allow "TODO:", |
|
|
|
@ -13,7 +19,6 @@ notes=FIXME,XXX |
|
|
|
|
|
|
|
|
|
#TODO: Enable missing-docstring |
|
|
|
|
#TODO: Enable too-few-public-methods |
|
|
|
|
#TODO: Enable too-many-arguments |
|
|
|
|
#TODO: Enable no-init |
|
|
|
|
#TODO: Enable duplicate-code |
|
|
|
|
#TODO: Enable invalid-name |
|
|
|
@ -35,4 +40,4 @@ notes=FIXME,XXX |
|
|
|
|
#TODO: Enable too-many-return-statements |
|
|
|
|
#TODO: Enable too-many-nested-blocks |
|
|
|
|
|
|
|
|
|
disable=missing-docstring,too-few-public-methods,too-many-arguments,no-init,duplicate-code,invalid-name,locally-disabled,protected-access,no-name-in-module,unused-argument,wrong-import-order,cyclic-import,too-many-instance-attributes,too-many-locals,too-many-lines,redefined-variable-type,next-method-called,import-error,useless-else-on-loop,too-many-return-statements,too-many-nested-blocks |
|
|
|
|
disable=missing-docstring,too-few-public-methods,no-init,duplicate-code,invalid-name,locally-disabled,protected-access,no-name-in-module,unused-argument,wrong-import-order,cyclic-import,too-many-instance-attributes,too-many-locals,too-many-lines,redefined-variable-type,next-method-called,import-error,useless-else-on-loop,too-many-return-statements,too-many-nested-blocks |
|
|
|
|