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:
authorJames Kasten <jdkasten@umich.edu>2015-06-25 00:38:30 +0300
committerJames Kasten <jdkasten@umich.edu>2015-06-25 00:38:30 +0300
commit06d7e51f22c182abb0a453ba422c185b92e9c4f8 (patch)
treea9577f25a302dde64e1fdca58b909ac360d09418 /.pylintrc
parente2be3a5fa9adc060c025a979b438b8e2c9e86dab (diff)
formatting and documentation
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc7
1 files changed, 3 insertions, 4 deletions
diff --git a/.pylintrc b/.pylintrc
index 825699036..5302133ad 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -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
+disable=fixme,locally-disabled,abstract-class-not-used
# abstract-class-not-used cannot be disabled locally (at least in pylint 1.4.1)
@@ -101,7 +101,7 @@ function-rgx=[a-z_][a-z0-9_]{2,40}$
function-name-hint=[a-z_][a-z0-9_]{2,40}$
# Regular expression matching correct variable names
-variable-rgx=[a-z_][a-z0-9_]{1,30}$
+variable-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for variable names
variable-name-hint=[a-z_][a-z0-9_]{2,30}$
@@ -228,8 +228,7 @@ max-module-lines=1250
indent-string=' '
# Number of spaces of indent required inside a hanging or continued line.
-# This does something silly/broken...
-#indent-after-paren=4
+indent-after-paren=4
[TYPECHECK]