diff options
author | Arun Isaac | 2023-01-18 01:53:12 +0000 |
---|---|---|
committer | Arun Isaac | 2023-01-18 01:53:12 +0000 |
commit | b6ff005d4040b1a70230df42a91a0cbee42c3031 (patch) | |
tree | 6951ea3c92a449ea260cc33478eed577038fce48 /.pylintrc | |
parent | 16b99eef9b7ad16ff5eac1b71d6b81f97fc6fe66 (diff) | |
download | genenetwork3-b6ff005d4040b1a70230df42a91a0cbee42c3031.tar.gz |
pylintrc: Disable no-else-return check.
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.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,4 +6,5 @@ ignore-imports=yes disable= fixme, - duplicate-code
\ No newline at end of file + duplicate-code, + no-else-return
\ No newline at end of file |