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: guacbot/translation-pipeline