Method: pylint.run_pylint
Calls: 5, Exceptions: 5, Paths: 1Back
Path 1: 5 calls (1.0)
None (1) ['/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/test_pylint_runners.py'] (1) ['--report', 'n', '--score', 'n', '--max-bran...
SystemExit (5)
1def run_pylint(argv: Sequence[str] | None = None) -> None:
2 """Run pylint.
3
4 argv can be a sequence of strings normally supplied as arguments on the command line
5 """
6 from pylint.lint import Run as PylintRun
7
8 try:
9 PylintRun(argv or sys.argv[1:])
10 except KeyboardInterrupt:
11 sys.exit(1)