summaryrefslogtreecommitdiff
path: root/CONTRIBUTORS.txt
diff options
context:
space:
mode:
authorSushobhit <31987769+sushobhit27@users.noreply.github.com>2018-05-15 23:03:00 +0530
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-15 13:33:00 -0400
commit5f5026627520bd06dae00f9cb87148ba9733d312 (patch)
treec635143687a0ddfff68ea3cf61dce7a6053c98c4 /CONTRIBUTORS.txt
parent64c4d9c006a9b03414d4ac34e17aeffd3f8903cd (diff)
downloadpylint-git-5f5026627520bd06dae00f9cb87148ba9733d312.tar.gz
Add new check 'comparison-with-itself' (#2074)
This test checks that we don't compare a value with itself, which might suggest some potential bug or an honest mistake. Fixes #2051
Diffstat (limited to 'CONTRIBUTORS.txt')
-rw-r--r--CONTRIBUTORS.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 024eb7e06..4a8938a4a 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -180,3 +180,6 @@ Order doesn't matter (not that much, at least ;)
* Fureigh: contributor
* Jace Browning: updated default report format with clickable paths
+
+* Sushobhit (sushobhit27): contributor
+ Added new check 'comparison-with-itself'.