mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00: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>
7 lines
242 B
Plaintext
7 lines
242 B
Plaintext
[codespell]
|
|
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
|
|
skip = .git*,*.svg,package-lock.json,*.css,.codespellrc,locales
|
|
check-hidden = true
|
|
ignore-regex = (\b(optIn|isTaller)\b|https://\S+)
|
|
# ignore-words-list =
|