Enable 'free' pylint checks

Change-Id: I4aa1e4a43c50b8ac0f4e97b84479c66d78407625
This commit is contained in:
Assaf Muller 2015-02-19 19:00:52 -05:00
parent 0908cbf1e3
commit 0e4781e2ab
1 changed files with 0 additions and 5 deletions

View File

@ -20,7 +20,6 @@ disable=
# "E" Error for important programming issues (likely bugs) # "E" Error for important programming issues (likely bugs)
access-member-before-definition, access-member-before-definition,
bad-super-call, bad-super-call,
maybe-no-member,
no-member, no-member,
no-method-argument, no-method-argument,
no-self-argument, no-self-argument,
@ -39,20 +38,16 @@ disable=
fixme, fixme,
global-statement, global-statement,
global-variable-not-assigned, global-variable-not-assigned,
logging-not-lazy,
no-init, no-init,
non-parent-init-called, non-parent-init-called,
protected-access, protected-access,
redefined-builtin, redefined-builtin,
redefined-outer-name, redefined-outer-name,
redefine-in-handler,
signature-differs, signature-differs,
star-args, star-args,
super-init-not-called, super-init-not-called,
unnecessary-lambda,
unnecessary-pass, unnecessary-pass,
unpacking-non-sequence, unpacking-non-sequence,
unreachable,
unused-argument, unused-argument,
unused-import, unused-import,
unused-variable, unused-variable,