Skip to main content
Module

std/_tools/lint.js

Deno standard library
Go to Latest
File
#!/usr/bin/env -S deno run --allow-read --allow-runconst p = Deno.run({ cmd: [Deno.execPath(), "lint", "--config", "deno.json"] });const status = await p.status();Deno.exit(status.code);