summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2017-03-24 16:50:56 -0400
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2017-03-26 07:41:18 +0000
commit0621e2f9206715e126e31a187c2615d0de71812c (patch)
tree8bf01879947e0fdc24ccbb347bb4283842586b18 /.pylintrc
parent79e9540c1ea0a8cf392450f7cb0b833634e9643a (diff)
downloadcloud-init-git-0621e2f9206715e126e31a187c2615d0de71812c.tar.gz
0.7.9-77-g4a2b2f87-0ubuntu1 (patches unapplied)
Imported using git-ubuntu import.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc39
1 files changed, 39 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
new file mode 100644
index 00000000..b8cda03c
--- /dev/null
+++ b/.pylintrc
@@ -0,0 +1,39 @@
+[MASTER]
+
+# --go-faster, use multiple processes to speed up Pylint
+jobs=4
+
+
+[MESSAGES CONTROL]
+
+# Errors only
+disable=C, F, I, R, W
+
+
+[REPORTS]
+
+# Set the output format. Available formats are text, parseable, colorized, msvs
+output-format=colorized
+
+# Just the errors please, no full report
+reports=no
+
+
+[TYPECHECK]
+
+# List of module names for which member attributes should not be checked
+# (useful for modules/projects where namespaces are manipulated during runtime
+# and thus existing member attributes cannot be deduced by static analysis. It
+# supports qualified module names, as well as Unix pattern matching.
+ignored-modules=six.moves,pkg_resources
+
+# List of class names for which member attributes should not be checked (useful
+# for classes with dynamically set attributes). This supports the use of
+# qualified names.
+ignored-classes=optparse.Values,thread._local
+
+# List of members which are set dynamically and missed by pylint inference
+# system, and so shouldn't trigger E1101 when accessed. Python regular
+# expressions are accepted.
+generated-members=types,http.client,command_handlers
+