-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.oxfmtrc.jsonc
More file actions
35 lines (35 loc) · 825 Bytes
/
.oxfmtrc.jsonc
File metadata and controls
35 lines (35 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
// https://prettier.io/docs/en/options.html
// https://oxc.rs/docs/guide/usage/formatter/config-file-reference
"bracketSameLine": true,
"bracketSpacing": true,
"singleQuote": false,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"printWidth": 120,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": true,
"trailingComma": "es5",
"proseWrap": "preserve",
"quoteProps": "as-needed",
"arrowParens": "always",
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"ignorePatterns": [
"node_modules",
".prettierrc",
".github",
".idea",
".vscode",
"package-lock.json",
"pnpm-lock.yaml",
"yarn.lock",
"pnpm-workspace.yaml",
//"dist",
//"**/dist/*",
"assets/**",
"lib/**",
"y.pub",
],
}