目录

avoid_print

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

此规则自 Dart 2.5 起可用。

规则集: flutter

此规则有快速修复可用。

详情

#

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

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

错误

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 文件中的 linter > rules 下添加 avoid_print

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_print