aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2021-02-27 12:25:53 -0700
committerTim Harder <radhermit@gmail.com>2021-02-27 12:26:41 -0700
commitcacd34d79ebc9005f4aad9d51718d8527e2b93d9 (patch)
treeb3964edfce6a9c9cbe0c2da973514cecced000bb /.pylintrc
parentgithub: add initial CI workflow (diff)
downloadpkgdev-cacd34d79ebc9005f4aad9d51718d8527e2b93d9.tar.gz
pkgdev-cacd34d79ebc9005f4aad9d51718d8527e2b93d9.tar.bz2
pkgdev-cacd34d79ebc9005f4aad9d51718d8527e2b93d9.zip
add initial .coveragerc and .pylintrc files
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
new file mode 100644
index 0000000..8856372
--- /dev/null
+++ b/.pylintrc
@@ -0,0 +1,13 @@
+[MESSAGES CONTROL]
+# snake_case variable naming style: C0103
+# not enough public methods: R0903
+# too many public methods: R0904
+# too many return statements: R0911
+# too many branches: R0912
+# too many local variables: R0914
+# too many statements: R0915
+disable=C0103,R0903,R0904,R0911,R0912,R0914,R0915
+
+[DESIGN]
+# increase allowed parent classes: R0901
+max-parents=15