Skip to content

Commit c290aec

Browse files
committed
Include fuzz sources in formatter
Update the formatting script to scan the `fuzz` directory alongside the existing first-party source directories. This ensures code under `fuzz` is included when running repository formatting checks.
1 parent 03c0bab commit c290aec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ REQUIRED_MAJOR=18
2121
# Directories that may contain first-party sources. Missing ones are skipped
2222
# rather than treated as an error: not every repository has every directory,
2323
# and an empty directory does not survive a git checkout.
24-
CANDIDATE_DIRS="include src tests benchmarks examples"
24+
CANDIDATE_DIRS="include src tests benchmarks examples fuzz"
2525

2626
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
2727
cd "$repo_root"

0 commit comments

Comments
 (0)