onlyTypeImportsBenchmarks must use `import type` to avoid runtime imports that break the benchmarker plugin.small-rules/only-type-importsRequire all imports to be type-only imports. Benchmarks cannot import non-types because the benchmarker plugin will throw an error.
onlyTypeImportsBenchmarks must use `import type` to avoid runtime imports that break the benchmarker plugin.This rule does not accept options.
import { Foo } from "./bar";import type { Foo } from "./bar";