diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py index 30cb9dab28d..522205e6a0f 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/pylint_guidelines_checker.py @@ -2753,6 +2753,8 @@ def visit_import(self, node): # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 +# [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 +# [Pylint] Investigate pylint rule around missing dependency #3231 # if a linter is registered in this function then it will be checked with pylint def register(linter): @@ -2790,6 +2792,8 @@ def register(linter): # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 # [Pylint] Add a check for connection_verify hardcoded settings #35355 + # [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 + # [Pylint] Investigate pylint rule around missing dependency #3231 # disabled by default, use pylint --enable=check-docstrings if you want to use it linter.register_checker(CheckDocstringParameters(linter)) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py index c1816783d2d..f9f3972ca75 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/tests/test_pylint_custom_plugins.py @@ -4834,4 +4834,6 @@ def test_allowed_import_else(self): # [Pylint] custom linter check for invalid use of @overload #3229 # [Pylint] Custom Linter check for Exception Logging #3227 # [Pylint] Address Commented out Pylint Custom Plugin Checkers #3228 -# [Pylint] Add a check for connection_verify hardcoded settings #35355 \ No newline at end of file +# [Pylint] Add a check for connection_verify hardcoded settings #35355 +# [Pylint] Refactor test suite for custom pylint checkers to use files instead of docstrings #3233 +# [Pylint] Investigate pylint rule around missing dependency #3231 \ No newline at end of file