feat: Enable GitHub output format for Pyrefly type checker#36205
Closed
xxiaoxiong wants to merge 1 commit into
Closed
feat: Enable GitHub output format for Pyrefly type checker#36205xxiaoxiong wants to merge 1 commit into
xxiaoxiong wants to merge 1 commit into
Conversation
Add 'outputformat = "github"' to [tool.pyrefly] configuration to enable inline PR annotations for type checking errors. This improves developer experience by showing type errors directly in GitHub PR diffs. Ref: https://pyrefly.org/en/docs/installation/#inline-pr-annotations Fixes #36189
asukaminato0721
approved these changes
May 15, 2026
| python-platform = "linux" | ||
| python-version = "3.12.0" | ||
| infer-with-first-use = false | ||
| outputformat = "github" |
Contributor
There was a problem hiding this comment.
asukaminato0721
requested changes
May 15, 2026
2 tasks
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.
Description
This PR enables GitHub-formatted output for the Pyrefly type checker, which will show inline annotations in pull requests for type checking errors.
Changes
outputformat = "github"to[tool.pyrefly]configuration inapi/pyproject.tomlBenefits
Reference
Testing
The configuration change is minimal and follows Pyrefly's official documentation. The next PR with type checking will demonstrate the inline annotations.
Fixes #36189