Method: pylint.config.argument._BaseStoreArgument.__init__
Calls: 157110, Exceptions: 0, Paths: 1Back
Path 1: 157110 calls (1.0)
['--ignore-paths'] (1488) ['--persistent'] (1488) ['--load-plugins'] (1488) ['--reports', '-r'] (1488) ['--evaluation'] (1488) ['--score', '-s'] (1488...
'store' (153974) 'store_true' (3136)
False (20787) '' (14476) True (13883) None (13843) () (13276) 'snake_case' (6846) [] (6749) 1 (3792) 4 (3422) 5 (3417)
"Add files or directories matching the regular expressions patterns to the ignore-list. The regex matches against paths and can be in Posix or Windows...
False (155622) True (1488)
None (149670) 'Reports' (5952) 'Messages control' (1488)
1def __init__(
2 self,
3 *,
4 flags: list[str],
5 action: str,
6 default: _ArgumentTypes,
7 arg_help: str,
8 hide_help: bool,
9 section: str | None,
10 ) -> None:
11 super().__init__(
12 flags=flags, arg_help=arg_help, hide_help=hide_help, section=section
13 )
14
15 self.action = action
16 """The action to perform with the argument."""
17
18 self.default = default
19 """The default value of the argument."""