aboutsummaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorArun Isaac2021-12-23 13:39:18 +0530
committerArun Isaac2021-12-23 13:39:18 +0530
commit8b94567da3796048e28d3525d72a6ec65fc2a978 (patch)
tree2815bd4fd620b682ed2d98746d2a063d0fa4d21f /.pylintrc
parent27d54257735156ebc9d12f3ce638ea469d14e15e (diff)
downloadgenenetwork3-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--.pylintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 0bdef23..00dd6cd 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -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