no-sloppy-imports
NOTE: this rule is part of the
recommended
rule set.Enable full set in
deno.json
:{ "lint": { "tags": ["recommended"] } }
Enable full set using the Deno CLI:
deno lint --tags=recommended
Enforces specifying explicit references to paths in module specifiers.
Non-explicit specifiers are ambiguous and require probing for the correct file path on every run, which has a performance overhead.
Note: This lint rule is only active when using --unstable-sloppy-imports
.
Invalid: Jump to heading
import { add } from "./math/add";
import { ConsoleLogger } from "./loggers";
Valid: Jump to heading
import { add } from "./math/add.ts";
import { ConsoleLogger } from "./loggers/index.ts";