slash_for_doc_comments
Prefer using ///
for doc comments.
Details
#From Effective Dart:
DO use ///
for documentation comments.
Although Dart supports two syntaxes of doc comments (///
and /**
), we
prefer using ///
for doc comments.
GOOD:
dart
/// Parses a set of option strings. For each option:
///
/// * If it is `null`, then it is ignored.
/// * If it is a string, then [validate] is called on it.
/// * If it is any other type, it is *not* validated.
void parse(List options) {
// ...
}
Within a doc comment, you can use markdown for formatting.
Enable
#To enable the slash_for_doc_comments
rule,
add slash_for_doc_comments
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- slash_for_doc_comments
If you're instead using the YAML map syntax to configure linter rules,
add slash_for_doc_comments: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
slash_for_doc_comments: true
除非另有说明,文档之所提及适用于 Dart 3.7.0 版本,本页面最后更新时间: 2025-01-27。 查看文档源码 或者 报告页面问题。