summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-10-19 10:08:08 +0300
committerLars Wirzenius <liw@liw.fi>2018-10-19 10:08:08 +0300
commit99487daa80aab8c70d816f8474d56c42ac8cb27a (patch)
treebf20a1f54affc844212c445f8de0840b2c7521a4
parentb8b2878477eaa18e51a4321cf2ed7ac17a8b4bf5 (diff)
downloadmuck-poc-99487daa80aab8c70d816f8474d56c42ac8cb27a.tar.gz
Add: pylint.conf
-rw-r--r--pylint.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..c57d253
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,15 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ invalid-name,
+ missing-docstring,
+ no-self-use,
+ too-few-public-methods
+
+[REPORTS]
+reports=no
+
+[SIMILARITIES]
+min-similarity-lines=999