summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-07-13 18:15:04 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-07-13 18:15:04 +0200
commit89799b8666ec2f8b8965bc7e89522cc526e64cd6 (patch)
tree076070eabb3cfe567d6482b0332e0b5eb654e6bf /pylintrc
parent24463d452c5ba38ca4e81bfb8d641b5ef0dd3d72 (diff)
downloadcython-89799b8666ec2f8b8965bc7e89522cc526e64cd6.tar.gz
adapt pylint config a bit more
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 42a5a4e0b..632afa7b1 100644
--- a/pylintrc
+++ b/pylintrc
@@ -12,7 +12,7 @@ profile=no
# Add files or directories to the blacklist. They should be base names, not
# paths.
-ignore=CVS
+ignore=.git,.gitmarker
# Pickle collected data for later comparisons.
persistent=yes
@@ -87,7 +87,7 @@ bad-functions=map,filter,apply,input
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Regular expression which should only match correct module level names
-const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
+const-rgx=(([a-zA-Z_][a-zA-Z0-9_]*)|(__.*__))$
# Regular expression which should only match correct class names
class-rgx=[A-Z_][a-zA-Z0-9]+$
@@ -158,7 +158,7 @@ ignore-mixin-members=yes
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set).
-ignored-classes=SQLObject
+ignored-classes=
# When zope mode is activated, add a predefined set of Zope acquired attributes
# to generated-members.
@@ -205,7 +205,7 @@ int-import-graph=
[DESIGN]
# Maximum number of arguments for function / method
-max-args=5
+max-args=12
# Argument names that match this expression will be ignored. Default to name
# with leading underscore