summaryrefslogtreecommitdiff
path: root/pylint/constants.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-10-24 19:38:12 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-10-26 06:48:45 +0200
commitb6597225fbbc336b5fb30a36ba21b3866d2a9fdb (patch)
treeb1ff207b1f9e022c7571f68fee30ca2df9b56146 /pylint/constants.py
parentd3fd7f0f5292be31b92b431b6c9c9d6c05e8dd64 (diff)
downloadpylint-git-b6597225fbbc336b5fb30a36ba21b3866d2a9fdb.tar.gz
Create a OLD_DEFAULT_PYLINT_HOME constants
Diffstat (limited to 'pylint/constants.py')
-rw-r--r--pylint/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pylint/constants.py b/pylint/constants.py
index df688eada..bee1055e1 100644
--- a/pylint/constants.py
+++ b/pylint/constants.py
@@ -40,6 +40,9 @@ MSG_TYPES_STATUS = {"I": 0, "C": 16, "R": 8, "W": 4, "E": 2, "F": 1}
# on all project using [MASTER] in their rcfile.
MAIN_CHECKER_NAME = "master"
+# pylint: disable-next=fixme
+# TODO Remove in 3.0 with all the surrounding code
+OLD_DEFAULT_PYLINT_HOME = ".pylint.d"
DEFAULT_PYLINT_HOME = platformdirs.user_cache_dir("pylint")