summaryrefslogtreecommitdiffstats
path: root/testsuite/pylintrc.conf
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/pylintrc.conf')
-rw-r--r--testsuite/pylintrc.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/pylintrc.conf b/testsuite/pylintrc.conf
index 29e35135c..014a94de5 100644
--- a/testsuite/pylintrc.conf
+++ b/testsuite/pylintrc.conf
@@ -33,7 +33,7 @@ load-plugins=
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
-disable=W0142,W0511,W0603,R0201,R0901,R0903,R0904,R0921,R0922,C0302,I0011
+disable=W0142,W0511,W0603,R0201,R0901,R0902,R0903,R0904,R0921,R0922,C0302,I0011
[REPORTS]
@@ -162,14 +162,14 @@ attr-rgx=(Entries|[a-z_][a-z0-9_]{2,30})$
argument-rgx=[a-z_][a-z0-9_]{2,30}$
# Regular expression which should only match correct variable names
-variable-rgx=(rv|el|fd|[a-z_][a-z0-9_]{2,30})$
+variable-rgx=[a-z_][a-z0-9_]{2,30}$
# Regular expression which should only match correct list comprehension /
# generator expression variable names
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
# Good variable names which should always be accepted, separated by a comma
-good-names=i,j,k,ex,Run,_
+good-names=_,rv,el,fd,ca
# Bad variable names which should always be refused, separated by a comma
bad-names=foo,bar,baz,toto,tutu,tata