Add spelling check (#40)

This commit is contained in:
Franck R 2022-02-21 21:38:54 +11:00 committed by GitHub
parent fcb7a984ce
commit 868b2c289c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1526 additions and 2 deletions

120
.cspell.json Normal file
View File

@ -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/**"
]
}

View File

@ -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 >}}

View File

@ -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"
}
}

1400
yarn.lock

File diff suppressed because it is too large Load Diff