忽略某些检查

时间:2018-02-04 15:52:36

标签: intellij-idea dart

在某些情况下,检查很烦人,甚至提到文件有错误。

使用// ignore: argument_type_not_assignable会阻止错误消息。虽然我经常使用它,但是让这个评论在代码库中传播是很烦人的。

Settings > Inspections中找不到DartGeneral下的任何内容。

有没有办法抑制特定的检查?

1 个答案:

答案 0 :(得分:1)

您可以使用analysis_options.yaml文件

进行配置

https://www.dartlang.org/guides/language/analysis-options

analyzer:
  errors:
    argument_type_not_assignable: ignore

另见Suppress hint about use of protected member