diff options
Diffstat (limited to 'pylint/constants.py')
-rw-r--r-- | pylint/constants.py | 3 |
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") |