style(linter/plugins): update oxfmt config to format oxlint fixtures#15601
Merged
graphite-app[bot] merged 1 commit intomainfrom Nov 13, 2025
Conversation
Member
Author
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
65e1478 to
aee9be1
Compare
9ce7efe to
2fa4340
Compare
2fa4340 to
cb08016
Compare
cb08016 to
3dc1640
Compare
eb1a844 to
74033bd
Compare
3dc1640 to
ddfde55
Compare
ddfde55 to
7828f32
Compare
leaysgur
reviewed
Nov 12, 2025
Member
leaysgur
left a comment
There was a problem hiding this comment.
According to #15600, you want to format
apps/oxlint/test/fixtures
right?
In case of that, this seems to work.
diff --git a/oxfmtrc.jsonc b/oxfmtrc.jsonc
index 36bdccee3..07e96aa2a 100644
--- a/oxfmtrc.jsonc
+++ b/oxfmtrc.jsonc
@@ -7,6 +7,7 @@
"**/tests/**",
"**/generated/**",
"**/fixtures/**",
+ "!apps/oxlint/test/fixtures/**",
"tasks/coverage/node-compat-table",
"tasks/coverage/misc",
"tasks/coverage/src/runtime/babelHelpers.js",
What you were trying in your opening comment appears:
{
"ignorePatterns": [
"**/fixtures/**",
"!apps/oxlint/fixtures/**",
]
}apps/oxlint/fixtures
should be
apps/oxlint/test/fixtures
7828f32 to
4995e79
Compare
Member
Author
|
Oh, I'm a total idiot! Thanks very much for pointing out my error. |
Member
Author
Merge activity
|
overlookmotel
added a commit
that referenced
this pull request
Nov 13, 2025
Add `// prettier-ignore` comment to test fixture, to prevent it getting formatted once #15601 is merged.
Base automatically changed from
11-13-test_linter_plugins_prevent_test_fixture_getting_formatted
to
main
November 13, 2025 15:09
4995e79 to
709e4e4
Compare
709e4e4 to
862daf4
Compare
862daf4 to
6ce62c5
Compare
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.

Update
oxfmtconfig so it formatsapps/oxlint/test/fixtures.Actual formatting changes were in PRs #15600 and #15674. This PR alters the config so all these files will continue to be formatted in future.