aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pylintrc
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-03-02 18:35:00 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2017-03-02 21:39:51 +0000
commitd5e3766027fa0f7e09700ff3af24db3b5f0581a1 (patch)
tree7eb5c87fec63218c2b5448933caa702b23ac76f5 /.pylintrc
parente151a21ee4912c1ce4ba021a029b9d190ce2d254 (diff)
Fix and enable no-value-for-parameter lint
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index f7cf0588ac..81b4048652 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -18,7 +18,6 @@ dummy-variables-rgx=^ignored_|^unused_
#TODO: Enable unused-argument
#TODO: Enable fixme
#TODO: Enable wrong-import-order
-#TODO: Enable no-value-for-parameter
#TODO: Enable cyclic-import
#TODO: Enable redefined-outer-name
#TODO: Enable too-many-instance-attributes
@@ -33,4 +32,4 @@ dummy-variables-rgx=^ignored_|^unused_
#TODO: Enable too-many-nested-blocks
#TODO: Enable super-init-not-called
-disable=missing-docstring,too-few-public-methods,too-many-arguments,no-init,duplicate-code,invalid-name,suppressed-message,locally-disabled,protected-access,no-name-in-module,unused-argument,fixme,wrong-import-order,no-value-for-parameter,cyclic-import,redefined-outer-name,too-many-instance-attributes,broad-except,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,super-init-not-called
+disable=missing-docstring,too-few-public-methods,too-many-arguments,no-init,duplicate-code,invalid-name,suppressed-message,locally-disabled,protected-access,no-name-in-module,unused-argument,fixme,wrong-import-order,cyclic-import,redefined-outer-name,too-many-instance-attributes,broad-except,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,super-init-not-called