Closed
Description
Consider the local good()
function declared in this test:
test('foo', () {
good() { ... }
expect(good, ...);
});
The type_annotate_public_apis
lint causes this issue to be reported:
lint • Type annotate public APIs at test/effective_dart_test.dart:28:7 • type_annotate_public_apis
Being a local function, good()
should not be considered in this lint.