aboutsummaryrefslogtreecommitdiffstats
path: root/src/configs
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-03 22:10:22 -0500
committerJack Lloyd <[email protected]>2018-12-03 22:10:22 -0500
commite7efc94ddc8dda6101d38870b44e4bcda6371be1 (patch)
treeea63f920fd11f5eefcd9edcd567cf066b7af16ff /src/configs
parentef57d0e4a4c53dd736edac2aca37125093d1e345 (diff)
Pylint fixes
Diffstat (limited to 'src/configs')
-rw-r--r--src/configs/pylint.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configs/pylint.rc b/src/configs/pylint.rc
index da0457c47..aea9463e6 100644
--- a/src/configs/pylint.rc
+++ b/src/configs/pylint.rc
@@ -226,7 +226,7 @@ ignored-modules=
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set). This supports can work
# with qualified names.
-ignored-classes=LexResult
+ignored-classes=LexResult,argv
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
@@ -241,7 +241,7 @@ init-import=no
# A regular expression matching the name of dummy variables (i.e. expectedly
# not used).
-dummy-variables-rgx=_$|dummy
+dummy-variables-rgx=_[a-z]*$
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.