Fix taplo test target directories (#36690)

The command `./mach test-tidy` did not check the TOML files in the
subdirectories of components/shared/, since the argument for taglo
command was written as `components/shared/*.toml`.

This patch fixes it to include those TOML files in test-tidy.

Testing: It only involves python script for test-tidy. No test is
needed.
Fixes: #36659

Signed-off-by: Kingsley Yung <kingsley@kkoyung.dev>
This commit is contained in:
Kingsley Yung 2025-04-25 20:52:20 +08:00 committed by GitHub
parent c6a399d760
commit cc91395397
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ TOML_GLOBS = [
"*.toml",
".cargo/*.toml",
"components/*/*.toml",
"components/shared/*.toml",
"components/shared/*/*.toml",
"ports/*/*.toml",
"support/*/*.toml",
]