{ "tests": { "check": { "args": "check --unstable-sloppy-imports main.ts", "output": "check.out" }, "run": { "args": "run --unstable-sloppy-imports main.ts", "output": "run.out" }, "lint": { "args": "lint --unstable-sloppy-imports", "output": "lint.out", "exitCode": 1 }, // try fixing the lint issues and then ensure deno check and run still work "lint_fix": { "tempDir": true, "steps": [{ "args": "lint --unstable-sloppy-imports --fix", "output": "Checked 17 files\n" }, { "args": "lint --unstable-sloppy-imports", "output": "Checked 17 files\n" }, { "args": "check --unstable-sloppy-imports main.ts", "output": "check.out" }, { "args": "run --unstable-sloppy-imports main.ts", "output": "run.out" }] } } }