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:
dart
a {
}
GOOD:
dart
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:
analysis_options.yaml
yaml
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:
analysis_options.yaml
yaml
linter:
rules:
eol_at_end_of_file: true
除非另有说明,文档之所提及适用于 Dart 3.7.1 版本,本页面最后更新时间: 2025-01-27。 查看文档源码 或者 报告页面问题。