diff options
author | Nathaniel Manista <nathaniel@google.com> | 2017-03-08 21:34:41 +0000 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2017-06-24 20:14:11 +0000 |
commit | 936f8d5eaaf63a72792226eda0209becb60b0ec8 (patch) | |
tree | 6b81c34f4827d9a07b5c534d7fc69e52d695d588 /.pylintrc | |
parent | 1b4be41a7212fa7ab18f73e1f8cebc12ddeffc0f (diff) |
Enable next-method-called lint
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -32,9 +32,8 @@ notes=FIXME,XXX #TODO: Enable too-many-instance-attributes #TODO: Enable too-many-lines #TODO: Enable redefined-variable-type -#TODO: Enable next-method-called #TODO: Enable import-error #TODO: Enable useless-else-on-loop #TODO: Enable 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,wrong-import-order,cyclic-import,too-many-instance-attributes,too-many-lines,redefined-variable-type,next-method-called,import-error,useless-else-on-loop,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,wrong-import-order,cyclic-import,too-many-instance-attributes,too-many-lines,redefined-variable-type,import-error,useless-else-on-loop,too-many-nested-blocks |