summaryrefslogtreecommitdiff
path: root/pylint/lint/base_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/lint/base_options.py')
-rw-r--r--pylint/lint/base_options.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/lint/base_options.py b/pylint/lint/base_options.py
index a25827b2b..aab019044 100644
--- a/pylint/lint/base_options.py
+++ b/pylint/lint/base_options.py
@@ -10,7 +10,7 @@ import re
import sys
from typing import TYPE_CHECKING
-from pylint import interfaces
+from pylint import constants, interfaces
from pylint.config.callback_actions import (
_DisableAction,
_DoNothingAction,
@@ -44,7 +44,7 @@ def _make_linter_options(linter: PyLinter) -> Options:
"metavar": "<file>[,<file>...]",
"dest": "black_list",
"kwargs": {"old_names": ["black_list"]},
- "default": ("CVS",),
+ "default": constants.DEFAULT_IGNORE_LIST,
"help": "Files or directories to be skipped. "
"They should be base names, not paths.",
},