mirror of
https://github.com/documenso/documenso.git
synced 2026-07-25 09:25:08 +10:00
34 lines
696 B
JSON
34 lines
696 B
JSON
{
|
|
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always",
|
|
"importOrder": [
|
|
"^server-only|client-only$",
|
|
"^react$",
|
|
"^next(/.*)?$",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"^@documenso/(.*)$",
|
|
"^~/(.*)$",
|
|
"^[./]"
|
|
],
|
|
"importOrderSeparation": true,
|
|
"importOrderSortSpecifiers": true,
|
|
"sortTailwindcss": {
|
|
"functions": ["cn", "cva"]
|
|
},
|
|
"sortPackageJson": false,
|
|
"ignorePatterns": [
|
|
"packages/lib/translations/**/*.js",
|
|
"*.test.ts",
|
|
"apps/docs/content/**/*.mdx",
|
|
"*.css",
|
|
"*.po",
|
|
"*.md",
|
|
"*.json"
|
|
]
|
|
}
|