Conversation
The parser now builds a lossless CST alongside the AST: every token, trivia included, falls inside exactly one node, so any subtree renders back to its exact source. Tokens carry an `end` offset to make that reconstruction exact for string literals. On top of it: - F310 judges continuation lines as continuations instead of badly indented statements, and enforces a hanging indent (configurable via `continuation_style`). Block depth now comes from the CST, fixing the previously untested ELSE/ELSEIF levels. - F330 (new) flags lines over `limit` (120) and rewraps them at argument or operator boundaries, producing F310-conformant layout. - F250 and F220 no longer claim the indentation of a continuation line; F220/F240 no longer oscillate on `nA = ;`. - apply_fixes resolves overlapping fixes instead of silently dropping the wider one. Assisted by: Claude Code
Fix YAML auto-fix so empty procedure sections like MetadataProcedure, DataProcedure, and EpilogProcedure no longer cause following properties to be removed. Assisted-by: GitHub Copilot
…in max line length rule
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.
The parser now builds a lossless CST alongside the AST: every token, trivia included, falls inside exactly one node, so any subtree renders back to its exact source. Tokens carry an
endoffset to make that reconstruction exact for string literals.On top of it:
continuation_style). Block depth now comes from the CST, fixing the previously untested ELSE/ELSEIF levels.limit(120) and rewraps them at argument or operator boundaries, producing F310-conformant layout.nA = ;.Assisted by: Claude Code