Describe the issue
The public_member_api_docs lint doesn't seem to warn when a public mixin (or any methods defined in it) do not have a doc comment.
To Reproduce
Enable the lint, the following sample doesn't trigger it:
mixin Foo {
void foo() {
// nothing to do.
}
}
Expected behavior
Since they are part of the public API, the lint should require doc comments on them.
Agreed. This one is showing it's age (predating mixins 馃槵 ) -- I'll update. Thanks!
We should validate that it works for extensions as well.

馃槉