summaryrefslogtreecommitdiff
path: root/pylint.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-09-24 17:46:20 +0300
committerLars Wirzenius <liw@liw.fi>2017-09-24 18:19:32 +0300
commite19b65c2cf05cf7f220a197592ac6803d0170762 (patch)
tree7f9b7f2e3a2026e4b0b2cd0f43337691895cb8dd /pylint.conf
parent6048e6025dc68214cc2732f6fdd713d0b66aa1c2 (diff)
downloadick2-e19b65c2cf05cf7f220a197592ac6803d0170762.tar.gz
Add: run pylint in check
Diffstat (limited to 'pylint.conf')
-rw-r--r--pylint.conf14
1 files changed, 14 insertions, 0 deletions
diff --git a/pylint.conf b/pylint.conf
new file mode 100644
index 0000000..43750b5
--- /dev/null
+++ b/pylint.conf
@@ -0,0 +1,14 @@
+[MASTER]
+persistent=no
+
+[MESSAGES CONTROL]
+disable=
+ invalid-name,
+ missing-docstring,
+ unused-argument
+
+[REPORTS]
+reports=no
+
+[SIMILARITIES]
+min-similarity-lines=999