chore: adopt ruff 0.16 [skip-runtime-e2e] - #222
Merged
Conversation
Bumps the linter pin from the 0.15 line to 0.16.x. PLR0917 (too many positional arguments) joins PLR0913 in the ignore list - public SDK signature arity is an API decision mirroring the Go SDK, not a lint call. Fixes the two real findings (RUF036 None-position in a union, ISC004 unparenthesized concat) and applies the 0.16 formatter, which now formats python code blocks in markdown. Signed-off-by: Saurabh Jain <saurabh.jain@getaxonflow.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to the <0.16 pin: deliberate 0.16 adoption. Pin bumped to
>=0.16,<0.17;PLR0917ignored alongside the existingPLR0913(public SDK signature arity is an API decision, mirrors the Go SDK); the two real findings fixed (RUF036, ISC004); 0.16 formatter applied (it now formats Python code blocks in markdown — README/CHANGELOG fences picked up trailing commas).Skip-runtime-e2e justification
Lint tooling pin + mechanical lint/format fixes; no SDK runtime behavior changed.