Add spelling check (#40)
This commit is contained in:
parent
fcb7a984ce
commit
868b2c289c
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"version": "0.1",
|
||||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
|
||||
"language": "en",
|
||||
"words": [
|
||||
"backoff",
|
||||
"backoffs",
|
||||
"bitjson",
|
||||
"bitauth",
|
||||
"Bojda",
|
||||
"bufbuild",
|
||||
"chainsafe",
|
||||
"cimg",
|
||||
"ciphertext",
|
||||
"circleci",
|
||||
"codecov",
|
||||
"commitlint",
|
||||
"dependabot",
|
||||
"dingpu",
|
||||
"Dlazy",
|
||||
"dnsaddr",
|
||||
"Dout",
|
||||
"Dscore",
|
||||
"ecies",
|
||||
"editorconfig",
|
||||
"enr",
|
||||
"enrs",
|
||||
"enrtree",
|
||||
"ephem",
|
||||
"esnext",
|
||||
"ethersproject",
|
||||
"execa",
|
||||
"exponentiate",
|
||||
"fanout",
|
||||
"floodsub",
|
||||
"fontsource",
|
||||
"ftstore",
|
||||
"gameplay",
|
||||
"globby",
|
||||
"gossipsub",
|
||||
"hackathon",
|
||||
"huilong",
|
||||
"iasked",
|
||||
"ihave",
|
||||
"ihaves",
|
||||
"ineed",
|
||||
"ipfs",
|
||||
"iwant",
|
||||
"jdev",
|
||||
"jswaku",
|
||||
"keccak",
|
||||
"lastpub",
|
||||
"libauth",
|
||||
"libp",
|
||||
"lightpush",
|
||||
"livechat",
|
||||
"mkdir",
|
||||
"minimalistic",
|
||||
"multiaddr",
|
||||
"multiaddresses",
|
||||
"multiaddrs",
|
||||
"multicodecs",
|
||||
"mplex",
|
||||
"multihashes",
|
||||
"muxed",
|
||||
"muxer",
|
||||
"mvps",
|
||||
"nodekey",
|
||||
"opendns",
|
||||
"peerhave",
|
||||
"portfinder",
|
||||
"prettierignore",
|
||||
"proto",
|
||||
"protobuf",
|
||||
"protoc",
|
||||
"reactjs",
|
||||
"recid",
|
||||
"rlnrelay",
|
||||
"roadmap",
|
||||
"sandboxed",
|
||||
"scanf",
|
||||
"secio",
|
||||
"seckey",
|
||||
"secp",
|
||||
"sscanf",
|
||||
"statechannels",
|
||||
"staticnode",
|
||||
"statusim",
|
||||
"submodule",
|
||||
"submodules",
|
||||
"supercrypto",
|
||||
"transpiled",
|
||||
"typedoc",
|
||||
"unencrypted",
|
||||
"unmount",
|
||||
"unmounts",
|
||||
"untracked",
|
||||
"upgrader",
|
||||
"vacp",
|
||||
"varint",
|
||||
"waku",
|
||||
"wakuconnect",
|
||||
"wakunetwork",
|
||||
"wakunode",
|
||||
"wakuv",
|
||||
"webfonts",
|
||||
"websockets",
|
||||
"wifi",
|
||||
"xsalsa20"
|
||||
],
|
||||
"flagWords": [],
|
||||
"ignorePaths": [
|
||||
"package.json",
|
||||
"package-lock.json",
|
||||
"yarn.lock",
|
||||
"tsconfig.json",
|
||||
"presentations.md", // contains youtube links
|
||||
"node_modules/**"
|
||||
]
|
||||
}
|
|
@ -169,6 +169,6 @@ to create a ride-sharing or tradings apps.
|
|||
|
||||
[Chat Messenger](#chat-messenger) is one form of social media that can be empowered by Waku to be decentralized
|
||||
and censorship-resistant.
|
||||
Other form of social media: news feed, blogposts, audio or video sharing, can also benefit of Waku.
|
||||
Other form of social media: news feed, blog posts, audio or video sharing, can also benefit of Waku.
|
||||
|
||||
{{< /columns >}}
|
||||
|
|
|
@ -8,10 +8,14 @@
|
|||
"private": true,
|
||||
"scripts": {
|
||||
"fix": "prettier \"content*/**/*.md\" \"./*.json\" --write",
|
||||
"test": "prettier \"content*/**/*.md\" \"./*.json\" --list-different",
|
||||
"test": "run-p test:*",
|
||||
"test:format": "prettier \"content*/**/*.md\" \"./*.json\" --list-different",
|
||||
"test:spelling": "cspell content/**/*.md",
|
||||
"serve": "hugo server"
|
||||
},
|
||||
"dependencies": {
|
||||
"cspell": "^5.18.5",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.5.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue