-
-
Notifications
You must be signed in to change notification settings - Fork 42
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 support for all Kotlin files #156
Conversation
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.
Apologies for the delay in reviewing your PR, for some reason I missed the nortification about the new PR & just encountered it by accident.
@@ -591,7 +591,7 @@ func TestGroovyTodos(t *testing.T) { | |||
} | |||
} | |||
|
|||
// Also tests Rust TODOs as rust uses the same comment syntax | |||
// Also tests Rust and Kotlin TODOs as they use the same comment syntax |
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.
can you:
- include a file in
testing/scenarios/swift/
which is a kotlin source file & include todo err scenarios for it as well? - Could you do the same for Rust as it seems to have been missed?
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.
sure 👍
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.
The changes requested have now been included @preslavmihaylov
Closes #155.
Reuses the standard comment matcher used for Rust and Swift, which supports single-, multiline comments, as well as nested comments.