Skip to content

Commit 7af195a

Browse files
committed
Merge remote-tracking branch 'upstream' into push-notifs
2 parents e5adaa1 + ac31ebe commit 7af195a

File tree

25 files changed

+126
-88
lines changed

25 files changed

+126
-88
lines changed

.git-blame-ignore-revs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Template taken from https://github.com/v8/v8/blob/master/.git-blame-ignore-revs.
2+
#
3+
# This file contains a list of git hashes of revisions to be ignored by git blame. These
4+
# revisions are considered "unimportant" in that they are unlikely to be what you are
5+
# interested in when blaming. Most of these will probably be commits related to linting
6+
# and code formatting.
7+
#
8+
# Instructions:
9+
# - Only large (generally automated) reformatting or renaming CLs should be
10+
# added to this list. Do not put things here just because you feel they are
11+
# trivial or unimportant. If in doubt, do not put it on this list.
12+
# - Precede each revision with a comment containing the PR title and number.
13+
# For bulk work over many commits, place all commits in a block with a single
14+
# comment at the top describing the work done in those commits.
15+
# - Only put full 40-character hashes on this list (not short hashes or any
16+
# other revision reference).
17+
# - Append to the bottom of the file (revisions should be in chronological order
18+
# from oldest to newest).
19+
# - Because you must use a hash, you need to append to this list in a follow-up
20+
# PR to the actual reformatting PR that you are trying to ignore.
21+
193693836e1ed8cd361e139668323d2e267a9eaa

.github/actions/spelling/allow.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,35 @@
1+
ACard
2+
AClient
13
AError
24
ARequest
5+
ARun
36
AServer
47
AStarlette
8+
EUR
9+
GBP
10+
INR
11+
JPY
12+
JSONRPCt
13+
Llm
14+
aconnect
515
adk
16+
autouse
17+
cla
18+
cls
19+
coc
620
codegen
21+
coro
722
datamodel
23+
dunders
824
genai
25+
gle
926
inmemory
1027
langgraph
1128
lifecycles
29+
linting
1230
oauthoidc
1331
opensource
1432
socio
1533
sse
1634
tagwords
35+
vulnz

.github/actions/spelling/excludes.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,5 @@
8585
^\Q.github/workflows/linter.yaml\E$
8686
\.gitignore\E$
8787
\.vscode/
88+
noxfile.py
89+
\.ruff.toml$
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
enabled: true
2+
always_check_pr_title: true

.github/linters/.jscpd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"ignore": ["**/.github/**", "**/.git/**", "**/tests/**"],
2+
"ignore": ["**/.github/**", "**/.git/**", "**/tests/**", "**/examples/**"],
33
"threshold": 3,
44
"reporters": ["html", "markdown"]
55
}

.github/linters/.markdownlint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"MD034": false,
3+
"MD013": false
4+
}

.github/workflows/linter.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,5 @@ jobs:
6161
VALIDATE_CHECKOV: false
6262
VALIDATE_JAVASCRIPT_STANDARD: false
6363
VALIDATE_TYPESCRIPT_STANDARD: false
64+
VALIDATE_GIT_COMMITLINT: false
65+
MARKDOWN_CONFIG_FILE: .markdownlint.json

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ __pycache__
77
.ruff_cache
88
.venv
99
coverage.xml
10-
spec.json
10+
.nox

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ offensive, or harmful.
4747

4848
This Code of Conduct applies both within project spaces and in public spaces
4949
when an individual is representing the project or its community. Examples of
50-
representing a project or community include using an official project e-mail
50+
representing a project or community include using an official project email
5151
address, posting via an official social media account, or acting as an appointed
5252
representative at an online or offline event. Representation of a project may be
5353
further defined and clarified by project maintainers.
@@ -93,4 +93,4 @@ available at
9393
https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
9494

9595
Note: A version of this file is also available in the
96-
[New Project repo](https://github.com/google/new-project/blob/master/docs/code-of-conduct.md).
96+
[New Project repository](https://github.com/google/new-project/blob/master/docs/code-of-conduct.md).

examples/google_adk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)