Method: pylint.config.option._regexp_csv_validator
Calls: 2, Exceptions: 1, Paths: 1Back
Path 1: 2 calls (1.0)
None (2)
'' (2)
'test_.*,foo\\.bar,^baz$' (1) 'test_.*,foo\\.bar,^baz)$' (1)
list (1) None (1)
error (1)
1def _regexp_csv_validator(
2 _: Any, name: str, value: str | list[str]
3) -> list[re.Pattern[str]]:
4 return [_regexp_validator(_, name, val) for val in _csv_validator(_, name, value)]