Skip to content

Commit 6fb5d91

Browse files
committed
Fix markdown lint errors
1 parent b9623c7 commit 6fb5d91

File tree

5 files changed

+201
-23
lines changed

5 files changed

+201
-23
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
MD034: false

.gitignore

Lines changed: 179 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,181 @@
1-
.DS_Store
2-
__pycache__
3-
.env
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*.pyc
5+
*$py.class
6+
**/dist
7+
/tmp
8+
/out-tsc
9+
/bazel-out
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
449
.coverage
5-
.mypy_cache
6-
.pytest_cache
7-
.ruff_cache
8-
.venv
50+
.coverage.*
51+
.cache
52+
nosetests.xml
953
coverage.xml
10-
spec.json
54+
*.cover
55+
*.py,cover
56+
.hypothesis/
57+
.pytest_cache/
58+
59+
# Translations
60+
*.mo
61+
*.pot
62+
63+
# Django stuff:
64+
*.log
65+
local_settings.py
66+
db.sqlite3
67+
db.sqlite3-journal
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
target/
81+
82+
# Jupyter Notebook
83+
.ipynb_checkpoints
84+
85+
# IPython
86+
profile_default/
87+
ipython_config.py
88+
89+
# pyenv
90+
.python-version
91+
92+
# pipenv
93+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
95+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
96+
# install all needed dependencies.
97+
Pipfile.lock
98+
Pipfile
99+
100+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
101+
__pypackages__/
102+
103+
# Celery stuff
104+
celerybeat-schedule
105+
celerybeat.pid
106+
107+
# SageMath parsed files
108+
*.sage.py
109+
110+
# Environments
111+
.env
112+
.venv
113+
.venv*
114+
env/
115+
venv/
116+
ENV/
117+
env.bak/
118+
venv.bak/
119+
120+
# Spyder project settings
121+
.spyderproject
122+
.spyproject
123+
124+
# Rope project settings
125+
.ropeproject
126+
127+
# mkdocs documentation
128+
/site
129+
130+
# mypy
131+
.mypy_cache/
132+
.dmypy.json
133+
dmypy.json
134+
135+
# Pyre type checker
136+
.pyre/
137+
138+
# macOS
139+
.DS_Store
140+
141+
# PyCharm
142+
.idea
143+
144+
# User-specific files
145+
language/examples/prompt-design/train.csv
146+
README-TOC*.md
147+
148+
# Terraform
149+
terraform.tfstate**
150+
.terraform*
151+
.Terraform*
152+
153+
tmp*
154+
155+
# Node
156+
**/node_modules
157+
npm-debug.log
158+
yarn-error.log
159+
160+
# IDEs and editors
161+
.idea/
162+
.project
163+
.classpath
164+
.c9/
165+
*.launch
166+
.settings/
167+
*.sublime-workspace
168+
169+
# Miscellaneous
170+
**/.angular/*
171+
/.angular/cache
172+
.sass-cache/
173+
/connect.lock
174+
/coverage
175+
/libpeerconnection.log
176+
testem.log
177+
/typings
178+
179+
# System files
180+
.DS_Store
181+
Thumbs.db

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"trailingComma": "es5",
5+
"bracketSameLine": true
6+
}

examples/google_adk/birthday_planner/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ This agent helps plan birthday parties. It has access to a Calendar Agent that i
1212

1313
## Running the example
1414

15-
1. Create the .env file with your API Key
15+
1. Create the `.env` file with your API Key
1616

17-
```bash
18-
echo "GOOGLE_API_KEY=your_api_key_here" > .env
19-
```
17+
```bash
18+
echo "GOOGLE_API_KEY=your_api_key_here" > .env
19+
```
2020

2121
2. Run the Calendar Agent. See examples/google_adk/calendar_agent.
2222

2323
3. Run the example
2424

25-
```
26-
uv run .
27-
```
25+
```sh
26+
uv run .
27+
```

examples/google_adk/calendar_agent/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ This example shows how to create an A2A Server that uses an ADK-based Agent that
1414

1515
1. Create the .env file with your API Key and OAuth2.0 Client details
1616

17-
```bash
18-
echo "GOOGLE_API_KEY=your_api_key_here" > .env
19-
echo "GOOGLE_CLIENT_ID=your_client_id_here" >> .env
20-
echo "GOOGLE_CLIENT_SECRET=your_client_secret_here" >> .env
21-
```
17+
```bash
18+
echo "GOOGLE_API_KEY=your_api_key_here" > .env
19+
echo "GOOGLE_CLIENT_ID=your_client_id_here" >> .env
20+
echo "GOOGLE_CLIENT_SECRET=your_client_secret_here" >> .env
21+
```
2222

2323
2. Run the example
2424

25-
```
26-
uv run .
27-
```
25+
```bash
26+
uv run .
27+
```

0 commit comments

Comments
 (0)