We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd66a7 commit 9423e31Copy full SHA for 9423e31
pylint/extensions/check_docs.py
@@ -0,0 +1,18 @@
1
+# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2
+# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
3
+
4
+import warnings
5
6
+from pylint.extensions import docparams
7
8
9
+def register(linter):
10
+ """Required method to auto register this checker.
11
12
+ :param linter: Main interface object for Pylint plugins
13
+ :type linter: Pylint object
14
+ """
15
+ warnings.warn("This plugin is deprecated, use pylint.extensions.docparams instead.",
16
+ DeprecationWarning)
17
+ linter.register_checker(docparams.DocstringParameterChecker(linter))
18
0 commit comments