Hi all,
Currently, if the setup is a monorepo, packages are located two levels deeper than normal, for example in packages/<name>/. This throws off rule ava/no-ignored-test-files:

We should make the algorithm smarter and make it detect test is in **/test/**/*.js as opposed to strict test/**/*.js.
We already check **/*.test.js, it just does not cover the folder case mentioned above.
Proposal: turn test/**/*.js into **/test/**/*.js
Also, what to do if test.js is in monorepo package's root — we also might need **/test.js.