eol_at_end_of_file
Put a single newline at end of file.
This rule is available as of Dart 2.14.
This rule has a quick fix available.
Details
#DO put a single newline at the end of non-empty files.
BAD:
dart
a {
}
GOOD:
dart
b {
}
<-- newline
Usage
#To enable the eol_at_end_of_file
rule, add eol_at_end_of_file
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- eol_at_end_of_file
Unless stated otherwise, the documentation on this site reflects Dart 3.5.3. Page last updated on 2024-07-03. View source or report an issue.