-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cspell.json
46 lines (46 loc) · 1.07 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"allowCompoundWords": true,
"caseSensitive": false,
"dictionaries": ["@flex-development/log"],
"dictionaryDefinitions": [
{
"name": "@flex-development/log",
"path": "./.dictionary.txt"
}
],
"enableGlobDot": true,
"failFast": false,
"flagWords": [],
"ignorePaths": [
"**/*.patch",
"**/*.snap",
"**/*.wasm",
"**/.*ignore",
"**/.gitconfig",
"**/CHANGELOG.md",
"**/LICENSE.md",
"**/RELEASE_NOTES.md",
".cspell.json",
".dictionary.txt",
".git/",
".husky/_/",
".vscode/settings.json",
".yarn/",
"patches/",
"yarn.lock"
],
"ignoreRegExpList": ["ansi"],
"ignoreWords": [],
"language": "en-US",
"patterns": [
{
"name": "ansi",
"pattern": "/(\\\\u001b)(8|7|H|>|\\[(\\?\\d+(h|l)|[0-2]?(K|J)|\\d*(A|B|C|D\\D|E|F|G|g|i|m|n|S|s|T|u)|1000D\\d+|\\d*;\\d*(f|H|r|m)|\\d+;\\d+;\\d+m))/gi"
}
],
"readonly": true,
"useGitignore": true,
"usePnP": false,
"version": "0.2"
}