summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-07-31 14:42:36 +0300
committerLars Wirzenius <liw@liw.fi>2017-07-31 14:42:36 +0300
commitb361acdc692cc98642652ce0a9128276ac6658d0 (patch)
tree8295648f8812d1049ddb384696fc22f9628a983c /pylint.conf
parent41a5b87f00a30caf6c6e366809269929772d46d0 (diff)
downloadapifw-b361acdc692cc98642652ce0a9128276ac6658d0.tar.gz
Add: stuff to allow tests to run
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..95f7e92
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,20 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ invalid-name,
+ missing-docstring,
+ no-member,
+ no-self-use,
+ redefined-variable-type,
+ too-few-public-methods,
+ too-many-public-methods,
+ unidiomatic-typecheck,
+ unused-argument,
+
+[REPORTS]
+reports=no
+
+[SIMILARITIES]
+min-similarity-lines=999