Skip to content

Commit 61739d8

Browse files
authored
chore: Adds cspell config (#402)
* add cspell config * add to dictionary
1 parent 50a7989 commit 61739d8

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

.cspell/acronyms.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fedid
2+
respec

.cspell/misc.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
biblio
2+
parseable
3+
overprompting
4+
unlinkability
5+
quishing
6+
unlinkable
7+
linkable
8+
linkability
9+
fingerprinters
10+
birthdates
11+
reidentify

.cspell/names.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cappalli
2+
caceres
3+
onofri
4+
Galluzzo
5+
Hazael
6+
Bjorn
7+
Hjelm
8+
Yubico
9+
Hofmann
10+
Manu
11+
Sporny
12+
MATTR
13+
SPRIND
14+
EUDI
15+
Bormann
16+
Orie
17+
Massieux
18+
Thibodeau
19+
Yosef
20+
Jevon

cspell.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"version": "0.2",
3+
"ignorePaths": [
4+
"/.cspell/*"
5+
],
6+
"dictionaryDefinitions": [
7+
{
8+
"name": "names",
9+
"path": "./.cspell/names.txt",
10+
"addWords": true
11+
},
12+
{
13+
"name": "acronyms",
14+
"path": "./.cspell/acronyms.txt",
15+
"addWords": true
16+
},
17+
{
18+
"name": "misc",
19+
"path": "./.cspell/misc.txt",
20+
"addWords": true
21+
}
22+
],
23+
"dictionaries": [
24+
"names",
25+
"acronyms",
26+
"misc"
27+
],
28+
"words": [],
29+
"ignoreWords": [],
30+
"import": [],
31+
"ignoreRegExpList": [
32+
"/\\{#([^}]*)\\}/g",
33+
"/\\s*\\[\\[([^\\]]*)\\]\\]\\s*/g",
34+
"/\\(\\#([^\\s#][^)]*[^\\s)])\\)/g",
35+
"/&[^;\\s]+;/g",
36+
"/\\s*\\[=([^=]*)=\\]\\s*/g",
37+
"/class\\s*=\\s*['\"][^'\"]*['\"]/g",
38+
"/id\\s*=\\s*['\"][^'\"]*['\"]/g"
39+
]
40+
}

0 commit comments

Comments
 (0)