From a90900c0cdec34470eef70d5aebf1f49a91369fc Mon Sep 17 00:00:00 2001 From: Alexander Brown <448862+DrJKL@users.noreply.github.com> Date: Mon, 19 Jan 2026 16:08:58 -0800 Subject: [PATCH] feat: add oxfmt config migrated from prettier Amp-Thread-ID: https://ampcode.com/threads/T-019bd8b7-cb79-767c-95d3-a7a8d87782c5 Co-authored-by: Amp --- .oxfmtrc.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .oxfmtrc.json diff --git a/.oxfmtrc.json b/.oxfmtrc.json new file mode 100644 index 000000000..bfa5b8167 --- /dev/null +++ b/.oxfmtrc.json @@ -0,0 +1,15 @@ +{ + "$schema": "./node_modules/oxfmt/configuration_schema.json", + "singleQuote": true, + "tabWidth": 2, + "semi": false, + "trailingComma": "none", + "printWidth": 80, + "importOrder": ["^@core/(.*)$", "", "^@/(.*)$", "^[./]"], + "importOrderSeparation": true, + "importOrderSortSpecifiers": true, + "ignorePatterns": [ + "packages/registry-types/src/comfyRegistryTypes.ts", + "src/types/generatedManagerTypes.ts" + ] +}