Skip to content

Commit 7add5d0

Browse files
Bump pylint to 2.11.0, update changelog
1 parent 0d246e5 commit 7add5d0

File tree

88 files changed

+139
-24
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+139
-24
lines changed

ChangeLog

+18-10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,28 @@ Pylint's ChangeLog
33
------------------
44

55

6-
What's New in Pylint 2.11.0?
6+
7+
What's New in Pylint 2.12.0?
78
============================
89
Release date: TBA
910

1011
..
11-
Put new features here and also in 'doc/whatsnew/2.11.rst'
12+
Put new features here and also in 'doc/whatsnew/2.12.rst'
13+
14+
15+
16+
What's New in Pylint 2.11.1?
17+
============================
18+
Release date: TBA
19+
20+
..
21+
Put bug fixes that should not wait for a new minor version here
22+
23+
24+
25+
What's New in Pylint 2.11.0?
26+
============================
27+
Release date: 2021-09-16
1228

1329
* The python3 porting mode checker and it's ``py3k`` option were removed. You can still find it in older pylint
1430
versions.
@@ -105,14 +121,6 @@ Release date: TBA
105121

106122
Closes #4069
107123

108-
109-
What's New in Pylint 2.10.3?
110-
============================
111-
Release date: TBA
112-
113-
..
114-
Put bug fixes that should not wait for a new minor version here
115-
116124
* The ``invalid-name`` message is now more detailed when using multiple naming style regexes.
117125

118126

doc/whatsnew/2.10.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ colored diagrams, and plantuml diagram using pyreverse. ``PYLINT_HOME`` is now `
2222
The performance of the similarity checker has been improved, as well as several small performance fixes.
2323

2424
We're going to continue working on improving performance during 2.11. We're also going to finalize
25-
a new ``possible-forgotten-f-prefix`` check that had too much false positives at release time. Check
26-
https://github.com/PyCQA/pylint/pull/4787 if you want to provide knowledge or use case :)
25+
a new ``possible-forgotten-f-prefix`` check that had too much false positives at release time.
26+
Check the `possible-forgotten-f-prefix`_ issue if you want to provide knowledge or use case :)
2727

28+
.. _possible-forgotten-f-prefix: https://github.com/PyCQA/pylint/pull/4787
2829

2930
New checkers
3031
============

doc/whatsnew/2.11.rst

+26-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,36 @@
33
***************************
44

55
:Release: 2.11
6-
:Date: TBA
6+
:Date: 2021-09-16
77

88
Summary -- Release highlights
99
=============================
1010

11+
In 2.11, we added a new default checker to advise using f-string as it's
12+
the most efficient way of formatting strings right now. You can use
13+
`pyupgrade`_ to migrate your old ``%`` and ``format()`` automatically.
14+
15+
We added a new extension ``SetMembershipChecker`` that will advise the
16+
use of set for membership test, as it's more performant than lists or tuples.
17+
The ``CodeStyleChecker`` also got some love, check it out if you're not already
18+
using it.
19+
20+
We fixed some long standing bugs, false positives, or false negatives and
21+
we added small quality of life options like ``min-similarity-lines`` that
22+
disable the duplication check when set to 0.
23+
24+
Under the hood the code for both pylint and astroid is progressively more typed,
25+
which could be helpful to you if you're using them as libraries. In order for
26+
this new typing to make more sense and stay simple, we deprecated some functions
27+
or type that will be removed in the next major version. This is an ongoing effort.
28+
29+
The future ``possible-forgotten-f-prefix`` check still had too much false positives,
30+
and is delayed again. Check the `possible-forgotten-f-prefix`_ issue if you want
31+
to provide knowledge or use case :)
32+
33+
.. _possible-forgotten-f-prefix: https://github.com/PyCQA/pylint/pull/4787
34+
.. _pyupgrade: https://github.com/asottile/pyupgrade
35+
1136

1237
New checkers
1338
============

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
33
from typing import Tuple
44

5-
__version__ = "2.10.3-dev0"
5+
__version__ = "2.11.0"
66

77

88
def get_numversion_from_version(v: str) -> Tuple:

pylint/checkers/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Copyright (c) 2019 Bruno P. Kinoshita <kinow@users.noreply.github.com>
1313
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
1414
# Copyright (c) 2020 Frank Harrison <frank@doublethefish.com>
15+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1516
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1617
# Copyright (c) 2021 Matus Valo <matusvalo@users.noreply.github.com>
1718

pylint/checkers/async.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2017 Derek Gustafson <degustaf@gmail.com>
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
44
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
5+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
56
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
67

78
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/base.py

+2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@
5252
# Copyright (c) 2020 Gabriel R Sezefredo <g@briel.dev>
5353
# Copyright (c) 2020 Benny <benny.mueller91@gmail.com>
5454
# Copyright (c) 2020 Anubhav <35621759+anubh-v@users.noreply.github.com>
55+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
5556
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
57+
# Copyright (c) 2021 Yilei "Dolee" Yang <yileiyang@google.com>
5658
# Copyright (c) 2021 Lorena B <46202743+lorena-b@users.noreply.github.com>
5759
# Copyright (c) 2021 David Liu <david@cs.toronto.edu>
5860
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>

pylint/checkers/base_checker.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# Copyright (c) 2018 ssolanki <sushobhitsolanki@gmail.com>
1212
# Copyright (c) 2019 Bruno P. Kinoshita <kinow@users.noreply.github.com>
1313
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
14+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1415
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1516

1617
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/classes.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@
3333
# Copyright (c) 2019 Andrzej Klajnert <github@aklajnert.pl>
3434
# Copyright (c) 2019 Pascal Corpet <pcorpet@users.noreply.github.com>
3535
# Copyright (c) 2020 GergelyKalmar <gergely.kalmar@logikal.jp>
36-
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
36+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
3737
# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com>
38+
# Copyright (c) 2021 SupImDos <62866982+SupImDos@users.noreply.github.com>
39+
# Copyright (c) 2021 Kayran Schmidt <59456929+yumasheta@users.noreply.github.com>
40+
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
3841
# Copyright (c) 2021 Yu Shao, Pang <p.yushao2@gmail.com>
3942
# Copyright (c) 2021 Konstantina Saketou <56515303+ksaketou@users.noreply.github.com>
4043
# Copyright (c) 2021 James Sinclair <james@nurfherder.com>

pylint/checkers/design_analysis.py

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# Copyright (c) 2019 Michael Scott Cuthbert <cuthbert@mit.edu>
1616
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1717
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
18+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
19+
# Copyright (c) 2021 Melvin <31448155+melvio@users.noreply.github.com>
1820
# Copyright (c) 2021 Rebecca Turner <rbt@sent.as>
1921
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2022
# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com>

pylint/checkers/exceptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
2727
# Copyright (c) 2020 Ram Rachum <ram@rachum.com>
2828
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
29+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
2930
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
3031

3132
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/imports.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
# Copyright (c) 2020 Peter Kolbus <peter.kolbus@gmail.com>
3535
# Copyright (c) 2020 Damien Baty <damien.baty@polyconseil.fr>
3636
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
37+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
3738
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
3839
# Copyright (c) 2021 Will Shanks <wsha@posteo.net>
3940
# Copyright (c) 2021 Matus Valo <matusvalo@users.noreply.github.com>

pylint/checkers/logging.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# Copyright (c) 2019 Djailla <bastien.vallet@gmail.com>
1818
# Copyright (c) 2019 Svet <svet@hyperscience.com>
1919
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
20+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
2021
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2122
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2223
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/misc.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Copyright (c) 2020 wtracy <afishionado@gmail.com>
1717
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
1818
# Copyright (c) 2020 Benny <benny.mueller91@gmail.com>
19+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1920
# Copyright (c) 2021 Nick Drozd <nicholasdrozd@gmail.com>
2021
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2122
# Copyright (c) 2021 Konstantina Saketou <56515303+ksaketou@users.noreply.github.com>

pylint/checkers/newstyle.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
1515
# Copyright (c) 2019 Robert Schweizer <robert_schweizer@gmx.de>
1616
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
17+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1718
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1819

1920
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/raw_metrics.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
1010
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
1111
# Copyright (c) 2020 谭九鼎 <109224573@qq.com>
12+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1213
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1314

1415
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/similar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
# Copyright (c) 2020 Frank Harrison <frank@doublethefish.com>
1818
# Copyright (c) 2020 Eli Fine <ejfine@gmail.com>
1919
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <shvenkat@users.noreply.github.com>
20+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
2021
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2122
# Copyright (c) 2021 Maksym Humetskyi <Humetsky@gmail.com>
22-
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
2323
# Copyright (c) 2021 bot <bot@noreply.github.com>
2424
# Copyright (c) 2021 Aditya Gupta <adityagupta1089@users.noreply.github.com>
2525

pylint/checkers/stdlib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
2727
# Copyright (c) 2020 谭九鼎 <109224573@qq.com>
2828
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
29-
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
3029
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
30+
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
3131
# Copyright (c) 2021 Yilei "Dolee" Yang <yileiyang@google.com>
3232
# Copyright (c) 2021 Matus Valo <matusvalo@users.noreply.github.com>
3333
# Copyright (c) 2021 victor <16359131+jiajunsu@users.noreply.github.com>

pylint/checkers/strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
2525
# Copyright (c) 2020 谭九鼎 <109224573@qq.com>
2626
# Copyright (c) 2020 Anthony <tanant@users.noreply.github.com>
27-
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2827
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
28+
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2929
# Copyright (c) 2021 Peter Kolbus <peter.kolbus@garmin.com>
3030

3131

pylint/checkers/typecheck.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Copyright (c) 2020 Ram Rachum <ram@rachum.com>
4343
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
4444
# Copyright (c) 2020 Anubhav <35621759+anubh-v@users.noreply.github.com>
45+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
4546
# Copyright (c) 2021 David Liu <david@cs.toronto.edu>
4647
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
4748
# Copyright (c) 2021 doranid <ddandd@gmail.com>

pylint/checkers/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
# Copyright (c) 2020 Ram Rachum <ram@rachum.com>
4242
# Copyright (c) 2020 Slavfox <slavfoxman@gmail.com>
4343
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
44+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
4445
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
4546
# Copyright (c) 2021 Nick Drozd <nicholasdrozd@gmail.com>
4647
# Copyright (c) 2021 David Liu <david@cs.toronto.edu>
47-
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
4848
# Copyright (c) 2021 Matus Valo <matusvalo@users.noreply.github.com>
4949
# Copyright (c) 2021 Lorena B <46202743+lorena-b@users.noreply.github.com>
5050
# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com>

pylint/checkers/variables.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
# Copyright (c) 2020 Andrew Simmons <a.simmons@deakin.edu.au>
4040
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
4141
# Copyright (c) 2020 Ashley Whetter <ashleyw@activestate.com>
42+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
4243
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
4344
# Copyright (c) 2021 David Liu <david@cs.toronto.edu>
4445
# Copyright (c) 2021 kasium <15907922+kasium@users.noreply.github.com>

pylint/config/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# Copyright (c) 2018 Gary Tyler McLeod <mail@garytyler.com>
2424
# Copyright (c) 2018 Konstantin <Github@pheanex.de>
2525
# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>
26-
# Copyright (c) 2019, 2021 Ashley Whetter <ashley@awhetter.co.uk>
2726
# Copyright (c) 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
27+
# Copyright (c) 2019, 2021 Ashley Whetter <ashley@awhetter.co.uk>
2828
# Copyright (c) 2019 Janne Rönkkö <jannero@users.noreply.github.com>
2929
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
3030
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>

pylint/epylint.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
2121
# Copyright (c) 2020 Damien Baty <damien.baty@polyconseil.fr>
2222
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
23+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
2324
# Copyright (c) 2021 Nick Drozd <nicholasdrozd@gmail.com>
2425
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
2526
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>

pylint/extensions/_check_docs_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
1414
# Copyright (c) 2019 Danny Hermes <daniel.j.hermes@gmail.com>
1515
# Copyright (c) 2019 Zeb Nicholls <zebedee.nicholls@climate-energy-college.org>
16+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1617
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
1718
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1819

pylint/extensions/bad_builtin.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
44
# Copyright (c) 2020 Peter Kolbus <peter.kolbus@gmail.com>
55
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
6+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
67
# Copyright (c) 2021 Nick Drozd <nicholasdrozd@gmail.com>
78
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
89

pylint/extensions/broad_try_clause.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2019-2020 Tyler Thieding <tyler@thieding.com>
33
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
44
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
5+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
56
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
67
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
78

pylint/extensions/check_elif.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
66
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
77
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
8+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
89
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
910

1011
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/comparetozero.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
44
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
55
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
6+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
67
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
78
# Copyright (c) 2021 bernie gray <bfgray3@users.noreply.github.com>
89

pylint/extensions/confusing_elif.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
12
# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
23
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
34
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>

pylint/extensions/docparams.py

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# Copyright (c) 2020 Luigi <luigi.cristofolini@q-ctrl.com>
1616
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1717
# Copyright (c) 2020 Damien Baty <damien.baty@polyconseil.fr>
18+
# Copyright (c) 2021 SupImDos <62866982+SupImDos@users.noreply.github.com>
19+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1820
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1921
# Copyright (c) 2021 Logan Miller <14319179+komodo472@users.noreply.github.com>
2022

pylint/extensions/docstyle.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
55
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
66
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
7+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
78
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
89

910
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/emptystring.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
44
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
55
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
6+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
67
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
78

89
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/mccabe.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
55
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
66
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
7+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
78
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
89

910
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/redefined_variable_type.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019, 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
66
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
77
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
8+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
89
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
910

1011
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/graph.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Copyright (c) 2020 Damien Baty <damien.baty@polyconseil.fr>
99
# Copyright (c) 2020 谭九鼎 <109224573@qq.com>
1010
# Copyright (c) 2020 Benjamin Graham <benwilliamgraham@gmail.com>
11+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1112
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1213
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>
1314
# Copyright (c) 2021 Andrew Howe <howeaj@users.noreply.github.com>

pylint/interfaces.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Copyright (c) 2020-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
1111
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1212
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
13+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
1314
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
1415

1516
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

0 commit comments

Comments
 (0)