# Copyright (c) 2014-2015 Bruno Daniel # Copyright (c) 2015-2016, 2018, 2020 Claudiu Popa # Copyright (c) 2016 Ashley Whetter # Copyright (c) 2020 hippo91 # Copyright (c) 2021 Pierre Sassoulas # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/main/LICENSE import warnings from pylint.extensions import docparams def register(linter): """Required method to auto register this checker. :param linter: Main interface object for Pylint plugins :type linter: Pylint object """ warnings.warn( "This plugin is deprecated, use pylint.extensions.docparams instead.", DeprecationWarning, ) linter.register_checker(docparams.DocstringParameterChecker(linter))