mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* Add github action to codespell main on push and PRs
* Add rudimentary codespell config
* run codespell throughout fixing typos automagically (but ignoring overall fail due to ambigous ones)
=== Do not change lines below ===
{
"chain": [],
"cmd": "codespell -w || :",
"exit": 0,
"extra_inputs": [],
"inputs": [],
"outputs": [],
"pwd": "."
}
^^^ Do not change lines above ^^^
* Do interactive fixing of some ambigous typos
=== Do not change lines below ===
{
"chain": [],
"cmd": "codespell -w -i 3 -C 4",
"exit": 0,
"extra_inputs": [],
"inputs": [],
"outputs": [],
"pwd": "."
}
^^^ Do not change lines above ^^^
* Fix Formatting
---------
Co-authored-by: Dennis Bartlett <bartlett.dc.1@gmail.com>