-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxfmtrc.jsonc
More file actions
23 lines (23 loc) · 601 Bytes
/
Copy path.oxfmtrc.jsonc
File metadata and controls
23 lines (23 loc) · 601 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Ultracite oxfmt Configuration
// https://oxc.rs/docs/guide/usage/formatter/config-file-reference.html
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"endOfLine": "lf",
"experimentalSortImports": {
"ignoreCase": true,
"newlinesBetween": true,
"order": "asc",
},
"experimentalSortPackageJson": true,
"jsxSingleQuote": false,
"printWidth": 80,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
}