Consecutive block comments are not allowed. However, block comments followed by line comments and vice versa are allowed, as long as there is at least one blank line between them.
Non-Compliant Code Examples
/*
* Block comments can not be consecutive ...
*//*
* ... even when separated by a new line.
*/// Two comments
/* With no line in between */// Foo
Compliant Code Examples
// An EOL comment
// may be followed by another EOL comment
valfoo="foo"// Different comment types (including KDoc) may be consecutive ..
/*
* ... but do need to be separated by a blank line ...
*/// ... as demonstrated here
シームレスな統合。 Datadog Code Security をお試しください
Datadog Code Security
このルールを試し、Datadog Code Security でコードを解析する
このルールの使用方法
1
2
rulesets:- kotlin-code-style # Rules to enforce Kotlin code style.