summaryrefslogtreecommitdiff
path: root/CONTRIBUTORS.txt
diff options
context:
space:
mode:
authorSupImDos <62866982+SupImDos@users.noreply.github.com>2021-09-11 13:31:12 +0800
committerGitHub <noreply@github.com>2021-09-11 07:31:12 +0200
commit7390b6fd0b2f80a1d3dc09327f959bffff5a94b0 (patch)
treea13119add3f3ff55588b2b0c6d0a6a29812a54ae /CONTRIBUTORS.txt
parente777697819319200a6956e142405a0499995a2cb (diff)
downloadpylint-git-7390b6fd0b2f80a1d3dc09327f959bffff5a94b0.tar.gz
Fix no-self-use and docparams extension for async functions/methods (#4986)
* Fixed 'no-self-check' for async functions. * fixed 'docparams' for async functions. * Added 'no-self-use' to the pylint disable comment in broken test. * Added small changelog entry to Pylint 2.11.0 milestone. * Added test: 'no-self-use' for async method. * Added test: revamped 'docparams' functional tests to test all missing documentation. Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'CONTRIBUTORS.txt')
-rw-r--r--CONTRIBUTORS.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index e7e73136f..961f04e81 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -539,3 +539,7 @@ contributors:
* Phil A. (flying-sheep): contributor
* Melvin Hazeleger (melvio): contributor
+
+* Hayden Richards (SupImDos): contributor
+ - Fixed "no-self-use" for async methods
+ - Fixed "docparams" extension for async functions and methods