aboutsummaryrefslogtreecommitdiff
path: root/.pylintrc
AgeCommit message (Collapse)Author
2024-01-10Add extra pylint rule to except files that are too long.Munyoki Kilyungi
* .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>
2023-09-05Ignore linting version control files and migrations folderMunyoki Kilyungi
* .pylintrc: Add VCS and migrations to ignore and ignore-paths respectively. Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
2023-01-18pylintrc: Disable no-else-return check.Arun Isaac
else-return statements are closer to the cond ladders in lisp. They feel better composed, more symmetric and less like non-local exits. They should not be discouraged. * .pylintrc (disable): Add no-else-return.
2022-01-10Silence `duplicate-code` linting notificationsFrederick Muriuki Muriithi
2021-12-23pylintrc: Disable fixme check.Arun Isaac
fixme notes such as TODO, FIXME, etc. are good practice, and should not be discouraged. * .pylintrc (disable): Add fixme.
2021-03-08Ignore similarities in imports section when lintingBonfaceKilz