在某些情况下,检查很烦人,甚至提到文件有错误。
使用// ignore: argument_type_not_assignable
会阻止错误消息。虽然我经常使用它,但是让这个评论在代码库中传播是很烦人的。
在Settings > Inspections
中找不到Dart
或General
下的任何内容。
有没有办法抑制特定的检查?
答案 0 :(得分:1)
您可以使用analysis_options.yaml
文件
https://www.dartlang.org/guides/language/analysis-options
analyzer:
errors:
argument_type_not_assignable: ignore