Skip to content

Commit 8bbb529

Browse files
committed
Merge drivers-2789-fix-history-cse
2 parents 3310838 + fc360b2 commit 8bbb529

File tree

18 files changed

+6287
-3272
lines changed

18 files changed

+6287
-3272
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ logo.png
1010
codereview.rc
1111
.idea/**
1212
docs_build
13+
.pytest_cache

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repos:
4040
- id: mdformat
4141
args: ["--wrap=120", "--number"]
4242
additional_dependencies:
43-
[mdformat-gfm, mdformat-frontmatter, mdformat-footnote]
43+
[mdformat-gfm, mdformat-frontmatter, mdformat-footnote, mdformat-admon]
4444

4545
- repo: https://github.com/tcort/markdown-link-check
4646
rev: v3.11.2

markdown_link_config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@
1414
},
1515
{
1616
"pattern": "^https://github.com/10gen/mongo-enterprise-modules"
17+
},
18+
{
19+
"pattern": "cloudkms.googleapis.com"
20+
},
21+
{
22+
"pattern": "subtype6#intent-to-encrypt"
1723
}
1824
]
1925
}

scripts/generate_index.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
relpath = os.path.relpath(p.parent, start=source)
88
if "tests" in relpath:
99
continue
10+
if "node_modules" in relpath:
11+
continue
1012
if p.name in ['index.md']:
1113
continue
1214
fpath = relpath + '/' + p.name

0 commit comments

Comments
 (0)