diff options
author | Munyoki Kilyungi | 2024-01-10 16:46:02 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-01-10 16:46:02 +0300 |
commit | b73518251065c7584527eee3b0cde1670dae06b0 (patch) | |
tree | 87a5379f12753436b78a8d3c88ca5146bca9988d | |
parent | 5295c4d9d7e7c17dcbb8127d6f4b6c67aad6baa7 (diff) | |
download | genenetwork3-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-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,4 +11,5 @@ ignore-imports=yes disable= fixme, duplicate-code, - no-else-return + no-else-return, + too-many-lines, |