We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10b4ba9 commit db72b4cCopy full SHA for db72b4c
check_python.py
@@ -79,9 +79,7 @@ def main() -> None:
79
PYTHONPATH=os.pathsep.join(sys.path + workspace.path))
80
result = subprocess.run(
81
[sys.executable, '-m', 'pylint',
82
- # We’d like to add “--” after the options, but that’s not possible due
83
- # to https://github.com/PyCQA/pylint/issues/7003.
84
- '--persistent=no', '--rcfile=' + str(args.pylintrc.resolve())]
+ '--persistent=no', '--rcfile=' + str(args.pylintrc.resolve()), '--']
85
+ [str(file.relative_to(cwd))
86
for file in sorted(workspace.srcs)],
87
check=False, cwd=cwd, env=env,
0 commit comments