empty_ catches
Learn about the empty_catches linter rule.
Avoid empty catch blocks.
Details
#AVOID empty catch blocks.
In general, empty catch blocks should be avoided. In cases
where they are intended, a comment should be provided to
explain why exceptions are being caught and suppressed.
Alternatively, the exception identifier can be named with
underscores (e.g., _) to indicate that we intend
to skip it.
BAD:
try {
...
} catch(exception) { }
GOOD:
try {
...
} catch(e) {
// ignored, really.
}
// Alternatively:
try {
...
} catch(_) { }
// Better still:
try {
...
} catch(e) {
doSomething(e);
}
Enable
#
To enable the empty_catches rule, add
empty_catches under
linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- empty_catches
If you're instead using the YAML map syntax to configure
linter rules, add empty_catches: true under
linter > rules:
linter:
rules:
empty_catches: true
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.