You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
chore: Ignore hidden files in autoformat.sh
PiperOrigin-RevId: 798490378
This commit is contained in:
committed by
Copybara-Service
parent
0b89f1882d
commit
0eb65c07d5
+3
-3
@@ -52,16 +52,16 @@ echo '---------------------------------------'
|
||||
echo '| Auto-formatting src/...'
|
||||
echo '---------------------------------------'
|
||||
|
||||
find -L src/ -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
find -L src/ -not -path "*/.*" -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
|
||||
echo '---------------------------------------'
|
||||
echo '| Auto-formatting tests/...'
|
||||
echo '---------------------------------------'
|
||||
|
||||
find -L tests/ -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
find -L tests/ -not -path "*/.*" -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
|
||||
echo '---------------------------------------'
|
||||
echo '| Auto-formatting contributing/...'
|
||||
echo '---------------------------------------'
|
||||
|
||||
find -L contributing/ -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
find -L contributing/ -not -path "*/.*" -type f -name "*.py" -exec pyink --config pyproject.toml {} +
|
||||
|
||||
Reference in New Issue
Block a user