mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-09 09:30:06 +00:00
Replace @trivago/prettier-plugin-sort-imports with @prettier/plugin-oxc and @ianvs/prettier-plugin-sort-imports for improved performance. Changes: - Add @prettier/plugin-oxc (Rust-based fast parser) - Add @ianvs/prettier-plugin-sort-imports (import sorting compatible with oxc) - Remove @trivago/prettier-plugin-sort-imports - Update .prettierrc to use new plugins and compatible import order config - Reformat all files with new plugin configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
353 B
Plaintext
19 lines
353 B
Plaintext
{
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"trailingComma": "none",
|
|
"printWidth": 80,
|
|
"importOrder": [
|
|
"^@core/(.*)$",
|
|
"",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"",
|
|
"^@/(.*)$",
|
|
"",
|
|
"^[./]"
|
|
],
|
|
"importOrderTypeScriptVersion": "5.0.0",
|
|
"plugins": ["@prettier/plugin-oxc", "@ianvs/prettier-plugin-sort-imports"]
|
|
}
|