Disable pylint invalid-name

It's clearly making our code harder to read and write
This commit is contained in:
Peter Eckersley
2015-09-30 12:10:16 -07:00
parent 1e3c92c714
commit 2a3a111d62
18 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ load-plugins=linter_plugin
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=fixme,locally-disabled,abstract-class-not-used,bad-continuation,too-few-public-methods,no-self-use
disable=fixme,locally-disabled,abstract-class-not-used,bad-continuation,too-few-public-methods,no-self-use,invalid-name
# abstract-class-not-used cannot be disabled locally (at least in pylint 1.4.1)