有没有办法禁用颤动中的线的 linting 规则?
我有一个特定的用例,我想禁用两行的 linting。我已经编写了很多业务逻辑,所以我无法更改代码。
abstract class ReviewName {
static final NEW = 'NEW';
static final OLD = 'OLD';
}
上面的代码会有 linting 错误: Name non-constant identifiers using lowerCamelCase.dart(non_constant_identifier_names)
有什么办法可以避免只有两行的 lint 错误?