Closed exodustx0 closed 2 years ago
The use-test rule is triggered even if the import statement does not include a default specifier:
use-test
import type { TestInterface } from 'ava'; // "AVA should be imported as `test`."
Not a high priority issue I don't think, but it should be a quick fix, and ensure that use-test only concerns itself with test, not anything else.
test
If anyone wants to work on this, see the initial attempt in https://github.com/avajs/eslint-plugin-ava/pull/321.
The
use-test
rule is triggered even if the import statement does not include a default specifier:Not a high priority issue I don't think, but it should be a quick fix, and ensure that
use-test
only concerns itself withtest
, not anything else.