Style: Pass 'make lint'#353
Conversation
Signed-off-by: Ed Snible <snible@us.ibm.com>
PR Review: Style: Pass 'make lint'SummaryThis PR applies automated formatting and linting fixes across 20 files to make
Single commit, DCO signed-off, clean authorship. The commit message is FindingsCritical (1)
Suggestions (2)
Positive observations
CI Status
Verdict: COMMENTThe code changes themselves are clean, mechanical formatting fixes with no behavioral changes. The only CI failure (CodeQL) is a pre-existing issue not introduced by this PR. I would approve once the CodeQL finding is acknowledged -- either suppressed inline for the quickstart script, or tracked as a separate issue so it does not block this formatting cleanup. |
cwiklik
left a comment
There was a problem hiding this comment.
Pure style/formatting PR that brings the codebase in line with make lint (ruff). No behavioral changes — only formatting, trailing commas, quote normalization, f-string-without-vars fixes, one unused import removal (KeycloakGetError), and missing newlines at EOF.
All CI checks pass. LGTM.
Summary
Although we have a 'lint' target in our Makefile, it isn't run as part of CI and thus the code has drifted.
This PR allows lint to pass.
We should consider adding
make lintto CI or replacing that target with something else -- we don't want this to happen again.Related issue(s)
Resolves #348
(Optional) Testing Instructions
Type
make lintand verify success and no files changed.