-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-enable the missing-type-doc
Pylint warning
#279
Labels
Comments
To pinpoint when the regression occurred (at e6925aa) 2.12.0diff --git a/noxfile.py b/noxfile.py
index 6cb05fa5..0e7078fc 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -43,7 +43,7 @@ DEPS = {
"numpy": "numpy >= 1.21.4",
"pycobertura": "pycobertura >= 2.1.0",
"Pygments": "Pygments",
- "pylint": "pylint >= 2.12.1",
+ "pylint": "pylint == 2.12.0",
"pytest": "pytest >= 6.2.5",
"pytest-cov": "pytest-cov",
"scipy": "scipy >= 1.7.2",
@@ -391,7 +391,6 @@ def lint(session):
"--rcfile",
"pylintrc",
"--max-module-lines=3035",
- "--disable=missing-type-doc",
get_path("src", "python", "bezier"),
)
# Run Pylint over the tests source. yields
2.11.1diff --git a/noxfile.py b/noxfile.py
index 6cb05fa5..47b199f2 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -43,7 +43,7 @@ DEPS = {
"numpy": "numpy >= 1.21.4",
"pycobertura": "pycobertura >= 2.1.0",
"Pygments": "Pygments",
- "pylint": "pylint >= 2.12.1",
+ "pylint": "pylint == 2.11.1",
"pytest": "pytest >= 6.2.5",
"pytest-cov": "pytest-cov",
"scipy": "scipy >= 1.7.2",
@@ -391,7 +391,6 @@ def lint(session):
"--rcfile",
"pylintrc",
"--max-module-lines=3035",
- "--disable=missing-type-doc",
get_path("src", "python", "bezier"),
)
# Run Pylint over the tests source. yields
|
I started the process of filing an issue on https://github.com/PyCQA/pylint and made some more progress in understanding:
|
dhermes
changed the title
Re-enable the
Re-enable the Dec 1, 2021
=missing-type-doc
Pylint warningmissing-type-doc
Pylint warning
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See e6925aa. This was a regression introduced in Pylint 2.12.0.
The text was updated successfully, but these errors were encountered: