内容

avoid_print

避免在生产代码中使用 print 调用。

此规则从 Dart 2.5 开始可用。

规则集: flutter

此规则有一个 快速修复 可用。

详情

#

**应该** 避免在生产代码中使用 print 调用。

对于生产代码,请考虑使用日志记录框架。如果您使用的是 Flutter,您可以使用 debugPrint 或使用对 kDebugMode 的检查来包围 print 调用。

错误

dart
void f(int x) {
  print('debug: $x');
  ...
}

正确

dart
void f(int x) {
  debugPrint('debug: $x');
  ...
}

正确

dart
void f(int x) {
  log('log: $x');
  ...
}

正确

dart
void f(int x) {
  if (kDebugMode) {
      print('debug: $x');
  }
  ...
}

用法

#

要启用 avoid_print 规则,请在 analysis_options.yaml 文件中将 avoid_print 添加到 **linter > rules** 下。

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_print