lint/rules/no-external-import.md
Disallows the use of external imports.
Invalid:
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
Valid:
import { assertEquals } from "./deps.ts";
// deps.ts
export {
assert,
assertEquals,
assertStringIncludes,
} from "https://deno.land/[email protected]/testing/asserts.ts";
you can refer to the explanation of this convention here https://docs.deno.com/runtime/manual/basics/modules/#it-seems-unwieldy-to-import-urls-everywhere