-
-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add codespell: config, workflow (to alert when new typos added) and get typos fixed #15437
base: master
Are you sure you want to change the base?
Conversation
macos-13 is failing also in https://github.com/iterate-ch/cyberduck/actions/runs/7120060984 for another PR |
Our documentation would benefit from this build action a lot more. |
Generated code from swagger-codegen should be excluded from spelling checks. |
is it the what is it generated from since it seems to have unique to it typos ❯ git grep beeing
storegate/src/main/java/ch/cyberduck/core/storegate/io/swagger/client/api/WebDavPasswordApi.java: * Remove a WebDAV password to stop it from beeing used.
storegate/src/main/java/ch/cyberduck/core/storegate/io/swagger/client/api/WebDavPasswordApi.java: * Remove a WebDAV password to stop it from beeing used. |
The data types are generated from an API specification (that includes the typos) outside the scope of this project. |
…ut ignoring the failure due to ambigous typos === 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 ^^^
5aa973d
to
3d62b60
Compare
ok, ignored |
This is my way to contribute back to projects I touch to use or told about (thus popular).
codespell: https://github.com/codespell-project/codespell to discover more
I spotted some code changes - but all looked good to be changed, but please review more.
I ignored 'unsecure' in a config setting
connection.unsecure
to not cause disturbance.You can annotate lines to be ignored with e.g.
/* pragma: codespell-ignore */
so you could even add suggestions right here in the diff as suggestions to expedite reversion back if needed.