We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19acd79 commit ef44deeCopy full SHA for ef44dee
cspell.json
@@ -30,13 +30,24 @@
30
// multiaddrs are not spell checked
31
"/multiaddr(.*)/",
32
33
- // peer ids are not spell checked
34
- "/peerIdFromString(.*)/",
35
-
36
// string encoded binary is not spell checked
37
"/uint8ArrayFromString(.*)/",
38
39
// CIDs are not spell checked
40
- "/CID(.*)/"
+ "/CID(.*)/",
+
+ // string CIDs are not spell checked
+ "'baf(.*)'",
41
+ "\"baf(.*)\"",
42
+ "'Qm(.*)'",
43
+ "\"Qm(.*)\"",
44
45
+ // string PeerIds are not spell checked
46
+ "'12D3Koo(.*)'", // Ed25519
47
+ "\"12D3Koo(.*)\"", // Ed25519
48
+ "'16Uiu(.*)'", // secp256k1
49
+ "\"16Uiu(.*)\"", // secp256k1
50
+ "'k51(.*)'", // base36 PeerId as CID
51
+ "\"k51(.*)\"" // base36 PeerId as CID
52
]
53
}
0 commit comments