-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathcspell.json
More file actions
35 lines (35 loc) · 1.08 KB
/
Copy pathcspell.json
File metadata and controls
35 lines (35 loc) · 1.08 KB
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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"useGitignore": true,
"dictionaryDefinitions": [
{
"name": "sourcegraph-docs",
"path": "./cspell-allow-list.txt",
"addWords": true
},
{
"name": "sourcegraph-docs-block-list",
"path": "./cspell-block-list.txt",
"kind": "flag-words"
}
],
"dictionaries": ["sourcegraph-docs", "sourcegraph-docs-block-list"],
"ignoreRegExpList": [
"/\\\\[nrt]/g",
"/(?<![A-Za-z0-9+/])(?=[A-Za-z0-9+/]*[0-9])(?=[A-Za-z0-9+/]*[a-z])(?=[A-Za-z0-9+/]*[A-Z])[A-Za-z0-9+/]{8,}={1,2}(?![A-Za-z0-9+/=])/g"
],
"ignorePaths": [
".git/**",
"cspell.json",
"cspell-allow-list.txt",
"cspell-block-list.txt",
"pnpm-lock.yaml",
"docs/technical-changelog.mdx", // ~750 findings in imported release notes; fix them before dropping this
"docs/self-hosted/observability/alerts.mdx",
"docs/self-hosted/observability/dashboards.mdx",
"docs/admin/telemetry/protocol.mdx",
"src/images/logos/aws/icons.generated.ts",
"**/*.{gif,jpeg,jpg,png,svg,webp,woff,woff2}"
]
}