eol_at_end_of_file

Group: style

Maturity: stable

Dart SDK: >= 2.14.0 • (Linter v1.8.0)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

DO put a single newline at the end of non-empty files.

BAD:

a {
}

GOOD:

b {
}
    <-- newline

Usage

To enable the eol_at_end_of_file lint, add eol_at_end_of_file under linter > rules in your analysis_options.yaml file:

linter:
  rules:
    - eol_at_end_of_file