diff options
author | Arun Isaac | 2021-12-23 13:39:18 +0530 |
---|---|---|
committer | Arun Isaac | 2021-12-23 13:39:18 +0530 |
commit | 8b94567da3796048e28d3525d72a6ec65fc2a978 (patch) | |
tree | 2815bd4fd620b682ed2d98746d2a063d0fa4d21f /.pylintrc | |
parent | 27d54257735156ebc9d12f3ce638ea469d14e15e (diff) | |
download | genenetwork3-8b94567da3796048e28d3525d72a6ec65fc2a978.tar.gz |
pylintrc: Disable fixme check.
fixme notes such as TODO, FIXME, etc. are good practice, and should not be
discouraged.
* .pylintrc (disable): Add fixme.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ [SIMILARITIES] -ignore-imports=yes
\ No newline at end of file +ignore-imports=yes + +[MESSAGES CONTROL] + +disable=fixme
\ No newline at end of file |