generated from just-the-docs/just-the-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
cspell.json
75 lines (75 loc) · 1.63 KB
/
cspell.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"ignorePaths": ["_site", ".github", "node_modules"],
"patterns": [
{
"name": "Markdown links",
"pattern": "\\((.*)\\)",
"description": ""
},
{
"name": "Markdown code blocks",
"pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
"description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
},
{
"name": "Inline code blocks",
"pattern": "\\`([^\\`\\r\\n]+?)\\`",
"description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
},
{
"name": "Link contents",
"pattern": "\\<a(.*)\\>",
"description": ""
},
{
"name": "Multi-line code blocks",
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm"
}
],
"ignoreRegExpList": [
"Markdown links",
"Markdown code blocks",
"Inline code blocks",
"Link contents",
"Multi-line code blocks"
],
"words": [
"arrowtypeof",
"autoplay",
"bson",
"BSON",
"BYTEA",
"clickhouse",
"ClickHouse",
"dataframe",
"dataframes",
"datasource",
"datasources",
"eitsupi's",
"endraw",
"Fivetran",
"GCS",
"glaredb",
"glaredbteam",
"globbed",
"Globbed",
"Hyperquery",
"mydb",
"myhost",
"ndjson",
"psql",
"prql",
"PRQL",
"Quickstart",
"S3",
"SELECT",
"SMALLINT",
"Streamlit",
"Struct",
"TINYINT",
"typeof",
"serverless"
]
}