diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-10-25 09:27:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 09:27:47 +0200 |
commit | 8cfce138e9519f63e969e89359e86e140b2f0f13 (patch) | |
tree | eff12c3d285d53b7a6e4cf387f265ca029c72b51 /pylint/utils | |
parent | ed3449fee063d91f050c6b733030d3b3d7ad719f (diff) | |
download | pylint-git-8cfce138e9519f63e969e89359e86e140b2f0f13.tar.gz |
Add ``mixin-class-rgx`` option (#5203)
Co-authored-by: Alpha <alpha@pokesplash.net>
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'pylint/utils')
-rw-r--r-- | pylint/utils/utils.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py index 6c9f11298..8243bc322 100644 --- a/pylint/utils/utils.py +++ b/pylint/utils/utils.py @@ -54,7 +54,10 @@ GLOBAL_OPTION_BOOL = Literal[ GLOBAL_OPTION_INT = Literal["max-line-length", "docstring-min-length"] GLOBAL_OPTION_LIST = Literal["ignored-modules"] GLOBAL_OPTION_PATTERN = Literal[ - "no-docstring-rgx", "dummy-variables-rgx", "ignored-argument-names" + "no-docstring-rgx", + "dummy-variables-rgx", + "ignored-argument-names", + "mixin-class-rgx", ] GLOBAL_OPTION_PATTERN_LIST = Literal["ignore-paths"] GLOBAL_OPTION_TUPLE_INT = Literal["py-version"] |