282: Fix config precedence: piloop-config.yaml should outrank env vars (CLI > YAML > env > defaults) #283
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/issue-282/fix-config-precedence-piloop-config-yaml-should-ou"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
282: Fix config precedence: piloop-config.yaml should outrank env vars (CLI > YAML > env > defaults)
Implements 282.
Generated in 11m 41s.
Review findings
Now let's confirm the change is properly formatted and re-run the gates.There's a
format:checkscript — let's run it plus build/test/lint gates.Good, CHANGELOG.md no longer appears in the warnings list (was 19 files before, now 18 pre-existing ones), confirming the fix. Now run build, test, and lint.Build passed cleanly.All 2030 tests pass.Lint is clean. Final check of the diff status.The fix is minimal, scoped, and the gates all pass. Here's the final annotated findings document.Review Findings — 282
Summary
Fixed the single Low-severity finding:
CHANGELOG.md's wrapped bullet lines under the new "Config precedence" entry violated Prettier's line-wrap indentation for this file. Rannpx prettier --write CHANGELOG.mdand confirmed vianpx prettier --check CHANGELOG.md(now clean; the file no longer appears in the project-wideformat:checkwarning list, which still shows the same 18 pre-existing unrelated files as before). Re-ran all gates after the fix:npm run build(clean),npm test(142 files / 2030 tests, all green),npm run lint(clean, no eslint issues). No regressions introduced.Critical
(none)
High
(none)
Medium
(none)
Low
npx prettier --check CHANGELOG.md, which only flags this newly-added file; it was clean before this diff). Suggested fix: runnpx prettier --write CHANGELOG.md(ornpm run format) to normalize the new entry's indentation.