Method: pylint.run_epylint
Calls: 2, Exceptions: 2, Paths: 1Back
Path 1: 2 calls (1.0)
None (1) ['/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/test_pylint_runners.py'] (1)
SystemExit (2)
1def run_epylint(argv: Sequence[str] | None = None) -> NoReturn:
2 """Run epylint.
3
4 argv can be a list of strings normally supplied as arguments on the command line
5 """
6 from pylint.epylint import Run as EpylintRun
7
8 warnings.warn(
9 "'run_epylint' will be removed in pylint 3.0, use "
10 "https://github.com/emacsorphanage/pylint instead.",
11 DeprecationWarning,
12 stacklevel=1,
13 )
14 EpylintRun(argv)