-
-
Notifications
You must be signed in to change notification settings - Fork 30
feat!: make fixes/suggestions opt-in #317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Member
Author
5177d4a to
fe274cb
Compare
94dafd6 to
71f9af8
Compare
This was referenced Oct 24, 2025
83aede2 to
b8bdfdf
Compare
71f9af8 to
e38f138
Compare
fa558f6 to
4c4dace
Compare
This was referenced Oct 27, 2025
e38f138 to
11f985e
Compare
4c4dace to
a0e26f3
Compare
11f985e to
ea27947
Compare
a0e26f3 to
0c58d3f
Compare
0c58d3f to
d8a7d52
Compare
d8a7d52 to
e857d26
Compare
This was referenced Oct 29, 2025
graphite-app bot
pushed a commit
to oxc-project/oxc
that referenced
this pull request
Oct 29, 2025
In preparation for oxc-project/tsgolint#317. Enables oxlint to support missing fixes/suggestions in the payload from tsgolint.
camc314
approved these changes
Oct 29, 2025
Contributor
camc314
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for working on this, apologies have been OOO since beginning of this week
Contributor
Merge activity
|
Adds a `-fix`and `-fix-suggestions` option to headless mode to enable generating fixes and suggestions which will be returned in the payload. If there are no fixes or suggestions, we omit the field entirely instead of returning an empty array.
e857d26 to
f430beb
Compare
graphite-app bot
pushed a commit
to oxc-project/oxc
that referenced
this pull request
Oct 30, 2025
With oxc-project/tsgolint#317, tsgolint fixes will become opt-in. So, we need to pass the `-fix` and `-fix-suggestions` when fixes are enabled in oxlint. @camc314 This will need to be added in oxlint with, or before switching to the next version of tsgolint.
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.

Adds a
-fixand-fix-suggestionsoption to headless mode to enable generating fixes and suggestions which will be returned in the payload. If there are no fixes or suggestions, we omit the field entirely instead of returning an empty array.