wormhole/node/pkg
Jeff Schroeder b175dd43c8
docs: quit the spelling spam typo fix PRs with cspell magic (#3845)
* Add cspell configuration and custom dictionary

The goal is to cut down on both incoming tyops, and well meaning but
spammy tyop fix PRs.

To run cspell locally install it and run:

    cspell '**/*.md' \
        --config cspell.config.yaml \
        --words-only \
        --unique \
        --quiet | sort --ignore-case

* docs: cspell updates

* wormchain: cspell updates

* aptos: cspell updates

* node: cspell updates

* algorand: cspell updates

* whitepapers: cspell updates

* near: cspell updates

* solana: cspell updates

* terra: cspell updates

* cosmwasm: cspell updates

* ethereum: cspell updates

* clients: cspell updates

* cspell updates for DEVELOP document

* github: run cspell github action

* sdk: cspell updates

* github: only run cspell on markdown files

* algorand: EMMITTER --> EMITTER

Suggested-by: @evan-gray

* cspell: removed from dictionary

Suggested-by: @evan-gray

* aptos and node: cspell updates

Suggested-by: @evan-gray

* cosmowasm: doc updates for terra2

Suggested-by: @evan-gray

* algorand: cspell updates

Suggested-by: @evan-gray

* algorand: cspell updates

Suggested-by: @evan-gray

* cspell: updated custom word dictionary

This resorts the dictionary and adds a few new words from the
algorand/MEMORY.md document around varints and integers.

* cspell: sort the dictionary how vscode does it

On macOS the sorting is locale dependent. To do this on macOS, you have
to invert the case, do a character insensitive sort, and then invert the
case again:

    LC_COLLATE="en_US.UTF-8" cspell '**/*.md' --config cspell.config.yaml \
        --words-only \
        --unique \
        --no-progress \
        --quiet \
    | tr 'a-zA-Z' 'A-Za-z' \
    | sort --ignore-case \
    | tr 'a-zA-Z' 'A-Za-z'

This requires the `LC_COLLATE` variable to be set to `en_US.UTF-8`, or it
will not do the right thing.

* docs: grammar clean up

---------

Co-authored-by: Evan Gray <battledingo@gmail.com>
2024-03-20 15:40:02 -04:00
..
accountant Node/NTT/Acct: Add tests to verify emitter config 2024-03-19 12:35:05 -04:00
adminrpc node: Added RecoverChainId governance support 2024-02-06 16:49:20 -05:00
common Node: Remove Neon support (#3732) 2024-01-25 12:55:02 -06:00
db Node/Gov: Add target to db (#3791) 2024-03-05 09:46:50 -06:00
devnet Node: Keygen changes (#3401) 2023-09-27 12:06:12 -05:00
governor node: governor token list update 2024-03-08 10:26:35 -05:00
gwrelayer Tilt: Gateway deployment 2024-03-18 10:51:32 -04:00
node NTT / Acct / Node: Guardian support (#3815) 2024-03-08 07:52:12 -06:00
p2p Node: Always cut over to quic-v1 (#3715) 2024-01-17 10:12:00 -06:00
processor Node: Don't request reobservation on reobservations (#3397) 2023-09-29 10:42:44 -05:00
proto Deploy Polygon Sepolia Testnet (#3723) 2024-03-12 09:46:28 -05:00
publicrpc node: remove batchVAA remnants 2024-01-30 18:05:56 -05:00
query Node/CCQ: Concurrent queries (#3844) 2024-03-20 08:42:31 -05:00
readiness
supervisor
telemetry telemetry: add 204 as success status code (#3772) 2024-02-08 23:26:00 +08:00
version
watchers docs: quit the spelling spam typo fix PRs with cspell magic (#3845) 2024-03-20 15:40:02 -04:00
wormconn