Skip to content

Commit d8e9448

Browse files
committed
chore: use oxfmt default printWidth
1 parent 6c2088c commit d8e9448

File tree

10 files changed

+56
-13
lines changed

10 files changed

+56
-13
lines changed

.github/renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"github>Boshen/renovate"
5-
]
3+
"extends": ["github>Boshen/renovate"]
64
}

.oxfmtrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"printWidth": 120,
32
"singleQuote": true,
43
"ignorePatterns": ["crates/fspy_detours_sys/detours", "crates/vite_task_graph/run-config.ts"]
54
}

crates/fspy_detours_sys/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ rust-version.workspace = true
1010
cc = { workspace = true }
1111

1212
[dependencies]
13-
winapi = { workspace = true, features = ["minwindef", "libloaderapi", "processthreadsapi", "windef"] }
13+
winapi = { workspace = true, features = [
14+
"minwindef",
15+
"libloaderapi",
16+
"processthreadsapi",
17+
"windef",
18+
] }
1419

1520
[lints]
1621
workspace = true

crates/fspy_preload_windows/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ fspy_shared = { workspace = true }
1414
ntapi = { workspace = true }
1515
smallvec = { workspace = true }
1616
widestring = { workspace = true }
17-
winapi = { workspace = true, features = ["winerror", "winbase", "namedpipeapi", "memoryapi", "std"] }
17+
winapi = { workspace = true, features = [
18+
"winerror",
19+
"winbase",
20+
"namedpipeapi",
21+
"memoryapi",
22+
"std",
23+
] }
1824
winsafe = { workspace = true }
1925

2026
[target.'cfg(target_os = "windows")'.dev-dependencies]

crates/vite_task/docs/wildcard-env-patterns.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,14 @@ pub struct CommandFingerprint {
164164
"tasks": {
165165
"build": {
166166
"command": "vite build",
167-
"env": ["NODE_ENV", "NODE_OPTIONS", "VITE_API_URL", "VITE_APP_TITLE", "VITE_PUBLIC_PATH", "VITE_BASE_URL"]
167+
"env": [
168+
"NODE_ENV",
169+
"NODE_OPTIONS",
170+
"VITE_API_URL",
171+
"VITE_APP_TITLE",
172+
"VITE_PUBLIC_PATH",
173+
"VITE_BASE_URL"
174+
]
168175
}
169176
}
170177
}

crates/vite_task_bin/tests/e2e_snapshots/fixtures/e2e-lint-cache/snapshots.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22

33
[[e2e]]
44
name = "direct lint"
5-
steps = ["vt run lint # cache miss", "echo debugger > main.js # add lint error", "vt run lint # cache miss, lint fails"]
5+
steps = [
6+
"vt run lint # cache miss",
7+
"echo debugger > main.js # add lint error",
8+
"vt run lint # cache miss, lint fails",
9+
]

crates/vite_task_bin/tests/e2e_snapshots/fixtures/summary-output/snapshots.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ steps = ["vt run build"]
1010
[[e2e]]
1111
name = "single task cache hit shows compact summary"
1212
cwd = "packages/a"
13-
steps = ["vt run build # first run, cache miss", "vt run build # second run, cache hit → compact summary"]
13+
steps = [
14+
"vt run build # first run, cache miss",
15+
"vt run build # second run, cache hit → compact summary",
16+
]
1417

1518
# Multi-task (recursive), all cache miss → compact summary with 0 hits
1619
[[e2e]]
@@ -36,7 +39,10 @@ steps = ["vt run -r -v build"]
3639
# Multi-task with --verbose after cache hits
3740
[[e2e]]
3841
name = "multi task verbose with cache hits shows full summary"
39-
steps = ["vt run -r build # first run, populate cache", "vt run -r -v build # second run, verbose with cache hits"]
42+
steps = [
43+
"vt run -r build # first run, populate cache",
44+
"vt run -r -v build # second run, verbose with cache hits",
45+
]
4046

4147
# --last-details with no previous run
4248
[[e2e]]

crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ steps = ["echo '' | vt run"]
121121
[[e2e]]
122122
name = "interactive select task from lib"
123123
cwd = "packages/lib"
124-
steps = [{ command = "vt run", interactions = [{ "expect-milestone" = "task-select::0" }, { "write-key" = "enter" }] }]
124+
steps = [
125+
{ command = "vt run", interactions = [
126+
{ "expect-milestone" = "task-select::0" },
127+
{ "write-key" = "enter" },
128+
] },
129+
]
125130

126131
# Interactive: search for a task that only exists in another package
127132
[[e2e]]

crates/vite_task_plan/tests/plan_snapshots/fixtures/cache-keys/snapshots.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,8 @@ args = ["run", "echo-and-lint", "--fix"]
2727

2828
[[e2e]]
2929
name = "direct lint"
30-
steps = ["vt run lint # cache miss", "echo debugger > main.js # add lint error", "vt run lint # cache miss, lint fails"]
30+
steps = [
31+
"vt run lint # cache miss",
32+
"echo debugger > main.js # add lint error",
33+
"vt run lint # cache miss, lint fails",
34+
]

deny.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,16 @@ ignore = [
4848
# List of explicitly allowed licenses
4949
# See https://spdx.org/licenses/ for list of possible licenses
5050
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
51-
allow = ["Apache-2.0", "BSD-3-Clause", "ISC", "MIT", "MPL-2.0", "OpenSSL", "Unicode-DFS-2016", "Unicode-3.0"]
51+
allow = [
52+
"Apache-2.0",
53+
"BSD-3-Clause",
54+
"ISC",
55+
"MIT",
56+
"MPL-2.0",
57+
"OpenSSL",
58+
"Unicode-DFS-2016",
59+
"Unicode-3.0",
60+
]
5261
# The confidence threshold for detecting a license from license text.
5362
# The higher the value, the more closely the license text must be to the
5463
# canonical license text of a valid SPDX license file.

0 commit comments

Comments
 (0)