From 26955084faff12bce39ba8bcfe3602588bc0e755 Mon Sep 17 00:00:00 2001 From: bluwy Date: Wed, 11 Feb 2026 01:39:00 +0800 Subject: [PATCH 1/2] chore: move oxfmt ignore to config --- .oxfmtignore | 2 -- .oxfmtrc.json | 6 +++++- 2 files changed, 5 insertions(+), 3 deletions(-) delete mode 100644 .oxfmtignore diff --git a/.oxfmtignore b/.oxfmtignore deleted file mode 100644 index df9b35610..000000000 --- a/.oxfmtignore +++ /dev/null @@ -1,2 +0,0 @@ -# Docus MDC content - formatter breaks component syntax -docs/content/**/*.md diff --git a/.oxfmtrc.json b/.oxfmtrc.json index 90a61d709..56fcf1a4a 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -4,5 +4,9 @@ "singleQuote": true, "arrowParens": "avoid", "quoteProps": "consistent", - "experimentalSortPackageJson": false + "experimentalSortPackageJson": false, + "ignorePatterns": [ + // Docus MDC content - formatter breaks component syntax + "docs/content/**/*.md" + ] } From c77ecfa11807ea51724302494f34d8b3b11c8d7d Mon Sep 17 00:00:00 2001 From: bluwy Date: Wed, 11 Feb 2026 01:45:59 +0800 Subject: [PATCH 2/2] chore: just remove --- .oxfmtrc.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.oxfmtrc.json b/.oxfmtrc.json index 56fcf1a4a..90a61d709 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -4,9 +4,5 @@ "singleQuote": true, "arrowParens": "avoid", "quoteProps": "consistent", - "experimentalSortPackageJson": false, - "ignorePatterns": [ - // Docus MDC content - formatter breaks component syntax - "docs/content/**/*.md" - ] + "experimentalSortPackageJson": false }