summaryrefslogtreecommitdiff
path: root/pylint/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/constants.py')
-rw-r--r--pylint/constants.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/pylint/constants.py b/pylint/constants.py
index d30b9dd56..eb5b1118a 100644
--- a/pylint/constants.py
+++ b/pylint/constants.py
@@ -55,3 +55,17 @@ class WarningScope:
full_version = f"""pylint {__version__}
astroid {astroid.__version__}
Python {sys.version}"""
+
+HUMAN_READABLE_TYPES = {
+ "module": "module",
+ "const": "constant",
+ "class": "class",
+ "function": "function",
+ "method": "method",
+ "attr": "attribute",
+ "argument": "argument",
+ "variable": "variable",
+ "class_attribute": "class attribute",
+ "class_const": "class constant",
+ "inlinevar": "inline iteration",
+}