summaryrefslogtreecommitdiff
path: root/pylint/constants.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-05-10 11:38:53 +0200
committerGitHub <noreply@github.com>2022-05-10 11:38:53 +0200
commit7c915217b0513b34c179c409cff983352f685bf5 (patch)
tree8b66f795e83405e698453ecc3051fdc25c42576d /pylint/constants.py
parent133e2e59394528e3c2c16fd7ea921796bfcbef8d (diff)
downloadpylint-git-7c915217b0513b34c179c409cff983352f685bf5.tar.gz
Use main instead of master as main checker name (#6569)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'pylint/constants.py')
-rw-r--r--pylint/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/constants.py b/pylint/constants.py
index 6986b8a4e..2a6276ff3 100644
--- a/pylint/constants.py
+++ b/pylint/constants.py
@@ -46,8 +46,8 @@ MSG_TYPES_STATUS = {"I": 0, "C": 16, "R": 8, "W": 4, "E": 2, "F": 1}
# You probably don't want to change the MAIN_CHECKER_NAME
# This would affect rcfile generation and retro-compatibility
-# on all project using [MASTER] in their rcfile.
-MAIN_CHECKER_NAME = "master"
+# on all project using [MAIN] in their rcfile.
+MAIN_CHECKER_NAME = "main"
USER_HOME = os.path.expanduser("~")
# TODO: 3.0: Remove in 3.0 with all the surrounding code