about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-01-10 16:46:02 +0300
committerMunyoki Kilyungi2024-01-10 16:46:02 +0300
commitb73518251065c7584527eee3b0cde1670dae06b0 (patch)
tree87a5379f12753436b78a8d3c88ca5146bca9988d
parent5295c4d9d7e7c17dcbb8127d6f4b6c67aad6baa7 (diff)
downloadgenenetwork3-b73518251065c7584527eee3b0cde1670dae06b0.tar.gz
Add extra pylint rule to except files that are too long.
* .pylintrc (disable): Include "too-many-lines" rule in the list of exceptions.  The RDF queries are lengthy, causing lines in files to be too long.  Currently, a workaround is to disable this rule, as abstracting the queries elsewhere doesn't make sense.

Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 9b7ea17..7540b0c 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -11,4 +11,5 @@ ignore-imports=yes
 disable=
 	fixme,
 	duplicate-code,
-        no-else-return
+        no-else-return,
+	too-many-lines,