document_ignores
文档忽略注释。
此规则从 Dart 3.5 开始可用。
详细信息
#请 为所有忽略的诊断报告编写文档。
错误
dart
// ignore: unused_element
int _x = 1;
正确
dart
// This private field will be used later.
// ignore: unused_element
int _x = 1;
用法
#若要启用 document_ignores
规则,请在 analysis_options.yaml
文件的 linter > rules 下添加 document_ignores
。
analysis_options.yaml
yaml
linter:
rules:
- document_ignores
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新于 2024-07-03。 查看源代码 或 报告问题.