This product is not supported for your selected Datadog site. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: kotlin-code-style/no-consecutive-blank-lines

Language: Kotlin

Severity: Notice

Category: Code Style

Description

Code is more consistent and readable when there are not a variable number of consecutive newlines.

Non-Compliant Code Examples

package com.datadog.appsec;


import com.datadog.appsec.event.data.Address;
import java.util.Collection;




public interface AppSecModule { }

Compliant Code Examples

package com.datadog.appsec;

import com.datadog.appsec.event.data.Address;
import java.util.Collection;


////////////////////////////////////
// Newlines between comments are ok
////////////////////////////////////


public interface AppSecModule { }
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Security

PREVIEWING: heston/DOCS-10466