* 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>
* Ensure optin transaction is the current transaction and address the algo_seed transaction in a relative manner.
* Added core_approve.teal based on previous change.
* Fixed admin.py to make the tests pass.
* Changes for 3.16.2 Tilt / Devnet.
* Updated constants in test file
* modified python script to 3.16.2
* More AppID Changes.
* Found more AppIds to replace.
* testApp fixed to 1008.
tests added. some try basic functionality which was understed. others
try to mimic what an attacker would try to do.
this is a baseline from which to create more adversarial tests and
improve the testing suite of the contracts.
tests/README.md includes instructions on how to run the new tests.
* Add script to check docker pinning project wide
* Add workflow to run check-docker-pin
* Pin Docker image refs which were unpinned
* Add exceptions to the pin checking logic
* Fixes to check-docker-pin
* Clean up find command
* Bash optimizations
* Switch to env shebang
* Switch from find to git ls-files and add justification for ignore choices
* algo/make: add Makefile and test script
* algo/make: add cleanup of sandbox
* algo/make: add python3 requirements
* algo/make: fix path
* algo/make: change pyteal version
* algo/make: propagate errors
* algo/make: add verbosity
* algo/make: fix script
* algo/make: $? check is bad
* algo/make: try using github runner with python 3.10
* algo/make: need to use the correct requirements file
* algo/make: some tests aren't running
* algo/make: attempt to fix tests
* algo/make: get workflow to work
* algo/make: fix runner
* algo/make: try to find the correct python version
* algo/make: more changes
* algo/make: move code around
* algo/make: all python test
* algo/make: remove tabs
* algo/make: combine lines
* algo/make: back to using Makefile in action
* algo/make: change path
* algo/make: test error
* algo/make: fix error example
* algo - add stuff to tilt
* terra: fix terra test (#1231)
* terra: fix terra test
* Update terra git bits
Co-authored-by: Jeff Schroeder <jeffschroeder@computer.org>
* algo - add stuff to tilt
Co-authored-by: Evan Gray <56235822+evan-gray@users.noreply.github.com>
Co-authored-by: Jeff Schroeder <jeffschroeder@computer.org>