From 8b94567da3796048e28d3525d72a6ec65fc2a978 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 23 Dec 2021 13:39:18 +0530 Subject: pylintrc: Disable fixme check. fixme notes such as TODO, FIXME, etc. are good practice, and should not be discouraged. * .pylintrc (disable): Add fixme. --- .pylintrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.pylintrc') 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 -- cgit v1.2.3