Migrated from TODO.md.
Source section
P3 - Performance And CI Hardening
Problem
The pylint workflow uses unquoted command substitution with git ls-files '*.py'.
Goal
Avoid word splitting issues in CI.
Expected behavior
Use a null-delimited or xargs-based invocation.
Migrated from
TODO.md.Source section
P3 - Performance And CI Hardening
Problem
The pylint workflow uses unquoted command substitution with
git ls-files '*.py'.Goal
Avoid word splitting issues in CI.
Expected behavior
Use a null-delimited or
xargs-based invocation.