diff --git a/pylintrc b/pylintrc index f92adeea8..8cb86319e 100644 --- a/pylintrc +++ b/pylintrc @@ -84,7 +84,16 @@ disable= singleton-comparison, misplaced-comparison-constant, not-a-mapping, - singleton-comparison + singleton-comparison, + len-as-condition, # new in pylint 1.7 + no-else-return, # new in pylint 1.7 + literal-comparison, # new in pylint 1.7 + single-string-used-for-slots, # new in pylint 1.7 + useless-super-delegation, # new in pylint 1.7 + redefined-argument-from-local, # new in pylint 1.7 + consider-merging-isinstance, # new in pylint 1.7 + unsupported-assignment-operation # new in pylint 1.7 + consider-iterating-dictionary, # wontfix for better python2/3 code [REPORTS]