-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
39 lines (39 loc) · 974 Bytes
/
.oxfmtrc.json
File metadata and controls
39 lines (39 loc) · 974 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
36
37
38
39
{
"semi": false,
"singleQuote": true,
"printWidth": 80,
"sortPackageJson": false,
"overrides": [
{
"files": ["**/*.json5"],
"options": {
"singleQuote": false,
"quoteProps": "preserve"
}
},
{
"files": ["**/*.yml"],
"options": {
"singleQuote": false
}
}
],
"ignorePatterns": [
"packages/*/CHANGELOG.md",
"packages/vite/src/node/ssr/__tests__/fixtures/errors/syntax-error.*",
"playground-temp/",
"dist/",
"LICENSE.md",
"pnpm-lock.yaml",
"pnpm-workspace.yaml",
"playground/tsconfig-json-load-error/has-error/tsconfig.json",
"playground/html/invalid.html",
"playground/html/invalidClick.html",
"playground/html/invalidEscape.html",
"playground/html/valid.html",
"playground/external/public/slash@3.0.0.js",
"playground/ssr-html/public/slash@3.0.0.js",
"playground/worker/classic-worker.js",
"playground/css/weapp.wxss"
]
}