Method: pylint.config.deprecation_actions._OldNamesAction.__init__
Calls: 3096, Exceptions: 0, Paths: 1Back
Path 1: 3096 calls (1.0)
['--ignore'] (1518) ['--ignore-patterns'] (1488) ['--filter-mode', '-f'] (30) ['--output', '-o'] (30) ['--max-color-depth'] (30)
'ignore' (1518) 'ignore_patterns' (1488) 'filter_mode' (30) 'output' (30) 'max_color_depth' (30)
None (3096)
None (3096)
('CVS',) (1518) tuple (1488) 'PUB_ONLY' (30) 'dot' (30) 2 (30)
_csv_transformer def (1518) _regexp_csv_transfomer def (1488) _unquote def (60) int def (30)
None (3096)
False (3096)
'Files or directories to be skipped. They should be base names, not paths.' (1518) 'Files or directories matching the regular expression patterns are ...
'
['black_list'] (1488) ['black_list_re'] (1488) ['mode'] (30) ['output_format'] (30) ['max_color_depth'] (30) ['ignore_list'] (30)
1def __init__(
2 self,
3 option_strings: Sequence[str],
4 dest: str,
5 nargs: None = None,
6 const: None = None,
7 default: None = None,
8 type: None = None,
9 choices: None = None,
10 required: bool = False,
11 help: str = "",
12 metavar: str = "",
13 old_names: list[str] | None = None,
14 ) -> None:
15 assert old_names
16 self.old_names = old_names
17 super().__init__(
18 option_strings,
19 dest,
20 1,
21 const,
22 default,
23 type,
24 choices,
25 required,
26 help,
27 metavar,
28 )