openpencil/.oxfmtrc.json
Danila Poyarkov 4dc127f2d2 Configure oxfmt import sorting with proper groups
Replace experimentalSortImports with sortImports.
Groups: builtin → external → internal (@open-pencil/, @/).
Newlines between groups, alphabetical within.
2026-03-06 21:43:23 +03:00

23 lines
469 B
JSON

{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always",
"sortImports": {
"order": "asc",
"ignoreCase": true,
"newlinesBetween": true,
"internalPattern": ["@open-pencil/", "@/"],
"groups": [
"builtin",
"external",
"internal",
["parent", "sibling", "index"],
"type"
]
}
}