-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy path.oxfmtrc.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
40
41
42
43
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"sortPackageJson": false,
"svelte": {},
"overrides": [
{
"files": ["packages/*/README.md"],
"options": {
"useTabs": false,
"tabWidth": 2
}
}
],
"ignorePatterns": [
"documentation/**/*.md",
"packages/*/test/**/build/**",
"packages/adapter-cloudflare/test/apps/workers/dist/**",
"packages/enhanced-img/test/Output.svelte",
"packages/kit/src/core/postbuild/fixtures/**",
"packages/kit/src/runtime/components/svelte-5/layout.svelte",
"packages/kit/test/apps/basics/test/errors.json",
"packages/kit/test/build-errors/**",
"packages/kit/types",
"packages/package/test/fixtures/**",
"packages/package/test/watch/**",
"**/CHANGELOG.md",
"**/vite.config.js.timestamp-*",
"**/node_modules",
"**/.custom-out-dir",
"**/.netlify",
"**/.svelte-kit",
"**/.vercel",
"**/.wrangler",
"**/test-results",
".changeset",
"pnpm-lock.yaml",
"pnpm-workspace.yaml"
]
}