Skip to content

Commit 20e3565

Browse files
nyliramelekes
authored andcommitted
lint markdown docs using a stop-words and write-good linters (tendermint#2195)
* lint docs with write-good, stop-words * remove package-lock.json * update changelog * fix wrong paragraph formatting * fix some docs formatting * fix docs format * fix abci spec format
1 parent 8a84593 commit 20e3565

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3444
-835
lines changed

CHANGELOG_PENDING.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ FEATURES:
2323
- [types] allow genesis file to have 0 validators ([#2015](https://github.com/tendermint/tendermint/issues/2015))
2424

2525
IMPROVEMENTS:
26+
- [docs] Lint documentation with `write-good` and `stop-words`.
2627
- [scripts] Added json2wal tool, which is supposed to help our users restore
2728
corrupted WAL files and compose test WAL files (@bradyjoestar)
2829

docs/.textlintrc.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"rules": {
3+
"stop-words": {
4+
"severity": "warning",
5+
"defaultWords": false,
6+
"words": "stop-words.txt"
7+
}
8+
}
9+
}

docs/app-dev/ecosystem.json

+10-20
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,21 @@
55
"url": "https://github.com/cosmos/cosmos-sdk",
66
"language": "Go",
77
"author": "Cosmos",
8-
"description":
9-
"A prototypical account based crypto currency state machine supporting plugins"
8+
"description": "A prototypical account based crypto currency state machine supporting plugins"
109
},
1110
{
1211
"name": "cb-ledger",
1312
"url": "https://github.com/block-finance/cpp-abci",
1413
"language": "C++",
1514
"author": "Block Finance",
16-
"description":
17-
"Custodian Bank Ledger, integrating central banking with the blockchains of tomorrow"
15+
"description": "Custodian Bank Ledger, integrating central banking with the blockchains of tomorrow"
1816
},
1917
{
2018
"name": "Clearchain",
2119
"url": "https://github.com/tendermint/clearchain",
2220
"language": "Go",
2321
"author": "FXCLR",
24-
"description":
25-
"Application to manage a distributed ledger for money transfers that support multi-currency accounts"
22+
"description": "Application to manage a distributed ledger for money transfers that support multi-currency accounts"
2623
},
2724
{
2825
"name": "Ethermint",
@@ -43,8 +40,7 @@
4340
"url": "https://github.com/hyperledger/burrow",
4441
"language": "Go",
4542
"author": "Monax Industries",
46-
"description":
47-
"Ethereum Virtual Machine augmented with native permissioning scheme and global key-value store"
43+
"description": "Ethereum Virtual Machine augmented with native permissioning scheme and global key-value store"
4844
},
4945
{
5046
"name": "Merkle AVL Tree",
@@ -72,8 +68,7 @@
7268
"url": "https://github.com/trusch/passchain",
7369
"language": "Go",
7470
"author": "trusch",
75-
"description":
76-
"Tool to securely store and share passwords, tokens and other short secrets"
71+
"description": "Tool to securely store and share passwords, tokens and other short secrets"
7772
},
7873
{
7974
"name": "Passwerk",
@@ -87,8 +82,7 @@
8782
"url": "https://github.com/davebryson/py-tendermint",
8883
"language": "Python",
8984
"author": "Dave Bryson",
90-
"description":
91-
"A Python microframework for building blockchain applications with Tendermint"
85+
"description": "A Python microframework for building blockchain applications with Tendermint"
9286
},
9387
{
9488
"name": "Stratumn SDK",
@@ -102,16 +96,14 @@
10296
"url": "https://github.com/keppel/lotion",
10397
"language": "Javascript",
10498
"author": "Judd Keppel",
105-
"description":
106-
"A Javascript microframework for building blockchain applications with Tendermint"
99+
"description": "A Javascript microframework for building blockchain applications with Tendermint"
107100
},
108101
{
109102
"name": "Tendermint Blockchain Chat App",
110103
"url": "https://github.com/SaifRehman/tendermint-chat-app/",
111104
"language": "Javascript",
112105
"author": "Saif Rehman",
113-
"description":
114-
"This is a minimal chat application based on Tendermint using Lotion.js in 30 lines of code!. It also includes web/mobile application built using Ionic 3."
106+
"description": "This is a minimal chat application based on Tendermint using Lotion.js in 30 lines of code!. It also includes web/mobile application built using Ionic 3."
115107
},
116108
{
117109
"name": "BigchainDB",
@@ -184,16 +176,14 @@
184176
"url": "https://github.com/tendermint/tools",
185177
"technology": "Docker and Kubernetes",
186178
"author": "Tendermint",
187-
"description":
188-
"Deploy a Tendermint test network using Google's kubernetes"
179+
"description": "Deploy a Tendermint test network using Google's kubernetes"
189180
},
190181
{
191182
"name": "terraforce",
192183
"url": "https://github.com/tendermint/tools",
193184
"technology": "Terraform",
194185
"author": "Tendermint",
195-
"description":
196-
"Terraform + our custom terraforce tool; deploy a production Tendermint network with load balancing over multiple AWS availability zones"
186+
"description": "Terraform + our custom terraforce tool; deploy a production Tendermint network with load balancing over multiple AWS availability zones"
197187
},
198188
{
199189
"name": "ansible-tendermint",

docs/architecture/adr-002-event-subscription.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ a subset of transactions** (rather than all of them) using `/subscribe?event=X`.
77
example, I want to subscribe for all transactions associated with a particular
88
account. Same for fetching. The user may want to **fetch transactions based on
99
some filter** (rather than fetching all the blocks). For example, I want to get
10-
all transactions for a particular account in the last two weeks (`tx's block
11-
time >= '2017-06-05'`).
10+
all transactions for a particular account in the last two weeks (`tx's block time >= '2017-06-05'`).
1211

1312
Now you can't even subscribe to "all txs" in Tendermint.
1413

docs/architecture/adr-004-historical-validators.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## Context
44

55
Right now, we can query the present validator set, but there is no history.
6-
If you were offline for a long time, there is no way to reconstruct past validators. This is needed for the light client and we agreed needs enhancement of the API.
6+
If you were offline for a long time, there is no way to reconstruct past validators. This is needed for the light client and we agreed needs enhancement of the API.
77

88
## Decision
99

10-
For every block, store a new structure that contains either the latest validator set,
10+
For every block, store a new structure that contains either the latest validator set,
1111
or the height of the last block for which the validator set changed. Note this is not
1212
the height of the block which returned the validator set change itself, but the next block,
1313
ie. the first block it comes into effect for.
@@ -19,7 +19,7 @@ are updated frequently - for instance by only saving the diffs, rather than the
1919

2020
An alternative approach suggested keeping the validator set, or diffs of it, in a merkle IAVL tree.
2121
While it might afford cheaper proofs that a validator set has not changed, it would be more complex,
22-
and likely less efficient.
22+
and likely less efficient.
2323

2424
## Status
2525

docs/architecture/adr-005-consensus-params.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Since they may be need to be different in different networks, and potentially to
77
networks, we seek to initialize them in a genesis file, and expose them through the ABCI.
88

99
While we have some specific parameters now, like maximum block and transaction size, we expect to have more in the future,
10-
such as a period over which evidence is valid, or the frequency of checkpoints.
10+
such as a period over which evidence is valid, or the frequency of checkpoints.
1111

1212
## Decision
1313

@@ -45,22 +45,22 @@ type BlockGossip struct {
4545

4646
The `ConsensusParams` can evolve over time by adding new structs that cover different aspects of the consensus rules.
4747

48-
The `BlockPartSizeBytes` and the `BlockSize.MaxBytes` are enforced to be greater than 0.
48+
The `BlockPartSizeBytes` and the `BlockSize.MaxBytes` are enforced to be greater than 0.
4949
The former because we need a part size, the latter so that we always have at least some sanity check over the size of blocks.
5050

5151
### ABCI
5252

5353
#### InitChain
5454

5555
InitChain currently takes the initial validator set. It should be extended to also take parts of the ConsensusParams.
56-
There is some case to be made for it to take the entire Genesis, except there may be things in the genesis,
56+
There is some case to be made for it to take the entire Genesis, except there may be things in the genesis,
5757
like the BlockPartSize, that the app shouldn't really know about.
5858

5959
#### EndBlock
6060

6161
The EndBlock response includes a `ConsensusParams`, which includes BlockSize and TxSize, but not BlockGossip.
6262
Other param struct can be added to `ConsensusParams` in the future.
63-
The `0` value is used to denote no change.
63+
The `0` value is used to denote no change.
6464
Any other value will update that parameter in the `State.ConsensusParams`, to be applied for the next block.
6565
Tendermint should have hard-coded upper limits as sanity checks.
6666

@@ -83,4 +83,3 @@ Proposed.
8383
### Neutral
8484

8585
- The TxSize, which checks validity, may be in conflict with the config's `max_block_size_tx`, which determines proposal sizes
86-

0 commit comments

Comments
 (0)