diff options
author | Kound <carli.freudenberg@energymeteo.de> | 2022-01-13 12:26:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 12:26:08 +0100 |
commit | aaa3770d325223ee5c13a637f09ff16e5bbc5851 (patch) | |
tree | e49b3380195a0b2ff81c7967c328e0ecac46d96f /pylint/checkers/__init__.py | |
parent | 6bbb7d5a0f530171faa3ea2271d9d1edab0c902b (diff) | |
download | pylint-git-aaa3770d325223ee5c13a637f09ff16e5bbc5851.tar.gz |
Add a checker for misleading unicode (#5311)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'pylint/checkers/__init__.py')
-rw-r--r-- | pylint/checkers/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py index 914425313..5ca89f749 100644 --- a/pylint/checkers/__init__.py +++ b/pylint/checkers/__init__.py @@ -43,10 +43,12 @@ Base id of standard checkers (used in msg and report ids): . . 24: non-ascii-names -25-50: not yet used: reserved for future internal checkers. +25: unicode +26-50: not yet used: reserved for future internal checkers. This file is not updated. Use script/get_unused_message_id_category.py to get the next free checker id. + 51-99: perhaps used: reserved for external checkers The raw_metrics checker has no number associated since it doesn't emit any |