Skip to content

Commit 7ebb649

Browse files
committed
chore: format sources with dprint
1 parent bb1f7ad commit 7ebb649

16 files changed

Lines changed: 23 additions & 22 deletions

File tree

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ disallowed-types = [
1919
]
2020

2121
disallowed-macros = [
22-
{ path = "std::format", reason = "Use `vite_str::format` for small strings." }
22+
{ path = "std::format", reason = "Use `vite_str::format` for small strings." },
2323
]

crates/fspy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ For fully static binaries (such as `esbuild`), `LD_PRELOAD` does not work. In th
1616
It uses [Detours](https://github.com/microsoft/Detours) to intercept file system calls. The implementation is in `src/windows`.
1717

1818
## Unified interface
19-
The unified interface of `Command` is in `src/command.rs`.
2019

20+
The unified interface of `Command` is in `src/command.rs`.
2121

2222
## Preload Libraries
2323

crates/fspy_shared/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# fspy_shared
22

3-
Common code shared by `fspy` (run in the supervisor process) and `fspy_preload_*` (run in target processes).
3+
Common code shared by `fspy` (run in the supervisor process) and `fspy_preload_*` (run in target processes).

crates/vite_task/docs/vite-install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Examples
2929

3030
```yaml
3131
packages:
32-
- "packages/*"
33-
- "apps/*"
34-
- "!**/test/**"
32+
- 'packages/*'
33+
- 'apps/*'
34+
- '!**/test/**'
3535
```
3636
3737
/path/to/package.json
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- "."
2+
- '.'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- "packages/*"
2+
- 'packages/*'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- "packages/*"
2+
- 'packages/*'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- "packages/*"
2+
- 'packages/*'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- "packages/*"
2+
- 'packages/*'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packages:
2-
- "packages/*"
3-
- "apps/*"
2+
- 'packages/*'
3+
- 'apps/*'

0 commit comments

Comments
 (0)