-
Notifications
You must be signed in to change notification settings - Fork 14
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
codespell: Add spelling check and fix all issues #597
Conversation
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
Thank you for your contribution! |
@@ -18,7 +18,7 @@ spawn $ziti edge quickstart --home $env(QUICKSTART_HOME) | |||
set qs_id @spawn_id | |||
# wait until ER is connected | |||
expect { | |||
"finished sychronizing api sessions" { } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this typo is needed as it is the output from another project.
with the fix expect
won't find the right output
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you also wish to fix that -- it is here:
https://github.com/openziti/ziti/blob/42f6e3fc487b70970b4b6f57b0af72ebf06a65df/router/handler_edge_ctrl/apiSessionAdded.go#L124
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ekoby thank you. I´ve created a PR there, see openziti/ziti#1652
@@ -12,12 +12,12 @@ spawn $ziti edge quickstart --already-initialized --home $env(QUICKSTART_HOME) | |||
set qs_id $spawn_id | |||
|
|||
expect { | |||
"finished sychronizing api sessions" { } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comments about expected output
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
Hi,
this is a trivial PR, adding the codespell tool to the CI, and fixing some non-code misspelling cases.
The CI file is called
linters.yml
, so that this can be extended in a future with other linter tools.Best regards,
Mario