目录

always_specify_types

指定类型注解。

此规则从 Dart 2.0 开始可用。

此规则有可用的快速修复

不兼容的规则:avoid_types_on_closure_parameters, omit_local_variable_types, omit_obvious_local_variable_types, omit_obvious_property_types

详情

#

来自 flutter 仓库的风格指南

应该 指定类型注解。

当指定类型未知时,避免使用 var 和省略类型注解的简写方式。如果您明确表示类型未知,请使用 dynamic。如果您明确表示想要一个实现 ==hashCode 的对象,请使用 Object

错误示例

dart
var foo = 10;
final bar = Bar();
const quux = 20;

正确示例

dart
int foo = 10;
final Bar bar = Bar();
String baz = 'hello';
const int quux = 20;

注意:使用 meta 包中的 @optionalTypeArgs 注解,API 作者可以特殊处理类型参数,这些参数的类型需要是动态的,但其声明应被视为可选的。例如,假设您有一个 Key 对象,您希望将其类型参数视为可选的。使用 @optionalTypeArgs 看起来会是这样

dart
import 'package:meta/meta.dart';

@optionalTypeArgs
class Key<T> {
 ...
}

void main() {
  Key s = Key(); // OK!
}

用法

#

要启用 always_specify_types 规则,请在您的 analysis_options.yaml 文件中的 linter > rules 下添加 always_specify_types

analysis_options.yaml
yaml
linter:
  rules:
    - always_specify_types