copilot instructions
after completing a task, you may want to run these quality checks. it may be easiest to run them all together from a
Loading actions...
Skill content
Main instructions and any bundled files for this skill.
copilot instructions
linting, formatting, type checking, and building
after completing a task, you may want to run these quality checks. it may be easiest to run them all together from a
single command first. to do that, run the deno task allchecks command:
lint, fmt, type check, build
deno task allchecks
here are some individual checks you can also run if needed. generally if allchecks fails, it's most efficient to keep repeatedly calling allchecks until it passes.
linting
deno task lint
formatting
deno fmt --check src
to apply formatting, simply run
deno fmt src
type checking
deno check src
building
deno task build
edge cases
if dependencies are missing, you may need to run deno install. assume that the user has already done this and don't
run an install unless you get an error indicating something is missing.
Related Skills
Frontend Typescript Linting.mdc
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
2. Apply Deepthink Protocol (reason about dependencies
risks