Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目中有一个文件违反了许多 lint 规则,我无法对其进行重大更改。如何禁用此文件中的所有 lints?
从 Dart 2.15 开始,可以使用内联忽略指令来禁用文件中的所有 lints。
// ignore_for_file: type=lint
区分大小写和空格被忽略;以下样式也可以使用,例如:
TYPE=LINT
type = lint
要了解更多信息,可以在相关的GitHub 问题和代码审查线程中找到对分析器进行此添加的讨论。