Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 16:59:28 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-10-15 16:59:28 (GMT)
commita00dcaf52a55f8e18865c09f7e5cebe48ee6abdc (patch)
tree4e0ed9beef1ede4ec12221a276e1e83c97ab6cab
parent03c771ef16a7434da78819d935180932de65d0dc (diff)
pylintrc: EOL fixes
-rw-r--r--scripts/data/pylintrc22
1 files changed, 11 insertions, 11 deletions
diff --git a/scripts/data/pylintrc b/scripts/data/pylintrc
index f7113ad..ee47fc7 100644
--- a/scripts/data/pylintrc
+++ b/scripts/data/pylintrc
@@ -1,11 +1,11 @@
# lint Python modules using external checkers.
-#
+#
# This is the main checker controling the other ones and the reports
# generation. It is itself both a raw checker and an astng checker in order
# to:
# * handle message activation / deactivation at the module level
# * handle some basic but necessary stats'data (number of classes, methods...)
-#
+#
[MASTER]
# Specify a configuration file.
@@ -103,7 +103,7 @@ comment=no
# * dangerous default values as arguments
# * redefinition of function / method / class
# * uses of the global statement
-#
+#
[BASIC]
# Required attributes for module, separated by a comma
@@ -152,7 +152,7 @@ bad-functions=map,filter,apply,input
# try to find bugs in the code using type inference
-#
+#
[TYPECHECK]
# Tells wether missing members accessed in mixin class should be ignored. A
@@ -177,7 +177,7 @@ acquired-members=REQUEST,acl_users,aq_parent
# * undefined variables
# * redefinition of variable from builtins or from an outer scope
# * use of variable before assigment
-#
+#
[VARIABLES]
# Tells wether we should check for unused import in __init__ files.
@@ -198,7 +198,7 @@ additional-builtins=
# * attributes not defined in the __init__ method
# * supported interfaces implementation
# * unreachable code
-#
+#
[CLASSES]
# List of interface methods to ignore, separated by a comma. This is used for
@@ -214,7 +214,7 @@ defining-attr-methods=__init__,__new__,setUp
# * relative / wildcard imports
# * cyclic imports
# * uses of deprecated modules
-#
+#
[IMPORTS]
# Deprecated modules which should not be used, separated by a comma
@@ -236,7 +236,7 @@ int-import-graph=
# checks for sign of poor/misdesign:
# * number of methods, attributes, local variables...
# * size, complexity of functions, methods
-#
+#
[DESIGN]
# Maximum number of arguments for function / method
@@ -270,7 +270,7 @@ max-public-methods=20
# checks for similarities and duplicated code. This computation may be
# memory / CPU intensive, so you should disable it if you experiments some
# problems.
-#
+#
[SIMILARITIES]
# Minimum lines number of a similarity.
@@ -286,7 +286,7 @@ ignore-docstrings=yes
# checks for:
# * warning notes in the code like FIXME, XXX
# * PEP 263: source code with non ascii character but no encoding declaration
-#
+#
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
@@ -298,7 +298,7 @@ notes=FIXME,XXX,TODO
# * strict indentation
# * line length
# * use of <> instead of !=
-#
+#
[FORMAT]
# Maximum number of characters on a single line.