Add codespell support: workflow, config + make it fix typos#174
Add codespell support: workflow, config + make it fix typos#174yarikoptic wants to merge 7 commits intodbpedia:masterfrom
Conversation
=== Do not change lines below ===
{
"chain": [],
"cmd": "git-sedi 'occure only once' 'occur only once'",
"exit": 0,
"extra_inputs": [],
"inputs": [],
"outputs": [],
"pwd": "."
}
^^^ Do not change lines above ^^^
…ut ignore fail
=== Do not change lines below ===
{
"chain": [],
"cmd": "codespell -w | :",
"exit": 0,
"extra_inputs": [],
"inputs": [],
"outputs": [],
"pwd": "."
}
^^^ Do not change lines above ^^^
=== Do not change lines below ===
{
"chain": [],
"cmd": "codespell -w -i 3 -C 2",
"exit": 0,
"extra_inputs": [],
"inputs": [],
"outputs": [],
"pwd": "."
}
^^^ Do not change lines above ^^^
| var exponent = Hex.decode(exponentHex); | ||
|
|
||
| return { success: true, msg: { moduls: modulus, exponent: exponent } }; | ||
| return { success: true, msg: { modulus: modulus, exponent: exponent } }; |
There was a problem hiding this comment.
e.g. here is functional change. I found no other mentioning of getRSAModulusAndExponent here or entire github -- so may be it just was never used and could be just removed altogether?
| </td> | ||
| </tr> | ||
| <tr ng-repeat-end ng-if="binding.epxanded"> | ||
| <tr ng-repeat-end ng-if="binding.expanded"> |
There was a problem hiding this comment.
here is another possibly functionality effecting change - but my guess since was incorrectly typed everywhere -- should be fine?
|
Thanks for contributing. Looks like a useful tool for us, but I don't think it is a good idea to use a python tool in a project which does not use any python. There must be similar tools which could be employed for spellchecking and correction in |
|
I use tools written in other languages all the time, but I could see some rationale behind such desire for local needs (for CI -- doesn't really matter). FWIW I am aware of
|
See https://github.com/codespell-project/codespell for more info about the tool.
I am on a quest to codespell any project "I touch", so here I am -- feel welcome to close this PR and cherish the typos ;)
Note that some typos were found in the code so might affect (fix?) the operation. Please review with care.