eol_ at_ end_ of_ file
Put a single newline at end of file.
Details
#DO put a single newline at the end of non-empty files.
BAD:
a {
}
GOOD:
b {
}
<-- newline
Enable
#
To enable the eol_at_end_of_file rule, add eol_at_end_of_file under
linter > rules in your analysis_options.yaml
file:
linter:
rules:
- eol_at_end_of_file
If you're instead using the YAML map syntax to configure linter rules,
add eol_at_end_of_file: true under linter > rules:
linter:
rules:
eol_at_end_of_file: true
Unless stated otherwise, the documentation on this site reflects Dart 3.10.0. Report an issue.