Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-03-17 18:46:27 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-03-18 17:10:28 +0300
commitb6203d512c0e607f5263bb20e90d0774e410ade3 (patch)
treeaef02de30126b9ab287378dd8a917356e20db238 /.pylintrc
parentafd7db3a69c0658ffaa5166bfd75aad3cacced16 (diff)
acme.jose: (Typed)JSONObjectWithFields, Field, JWA.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc9
1 files changed, 5 insertions, 4 deletions
diff --git a/.pylintrc b/.pylintrc
index fe4d471ac..4835dbf74 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -38,7 +38,8 @@ 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
+disable=fixme,locally-disabled,abstract-class-not-used
+# abstract-class-not-used cannot be disabled locally (at least in pylint 1.4.1)
[REPORTS]
@@ -148,10 +149,10 @@ module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Regular expression matching correct method names
-method-rgx=[a-z_][a-z0-9_]{2,40}$
+method-rgx=[a-z_][a-z0-9_]{2,50}$
# Naming hint for method names
-method-name-hint=[a-z_][a-z0-9_]{2,40}$
+method-name-hint=[a-z_][a-z0-9_]{2,50}$
# Regular expression which should only match function or class names that do
# not require a docstring.
@@ -311,7 +312,7 @@ max-branches=12
max-statements=50
# Maximum number of parents for a class (see R0901).
-max-parents=7
+max-parents=12
# Maximum number of attributes for a class (see R0902).
max-attributes=7