You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Block comments preceded by another code element on the same line are converted to EOL comment. This should also be done for single line block comments which are not preceded or followed by another code element on the same line. Code below:
fun bar() {
/* Some comment */
}
should be formatted as:
fun bar() {
// Some comment
}
The text was updated successfully, but these errors were encountered:
Block comments preceded by another code element on the same line are converted to EOL comment. This should also be done for single line block comments which are not preceded or followed by another code element on the same line. Code below:
should be formatted as:
The text was updated successfully, but these errors were encountered: