1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/lint/lint_fix/__test__.jsonc

18 lines
424 B
Text
Raw Normal View History

{
"tempDir": true,
"steps": [{
"args": "lint --rules-tags=recommended,jsr",
"output": "lint.out",
"exitCode": 1
}, {
"args": "lint --fix --rules-tags=recommended,jsr",
"output": "lint_fixed.out"
}, {
"args": "lint --rules-tags=recommended,jsr",
"output": "lint_fixed.out"
}, {
"args": "run --allow-read --quiet http://localhost:4545/cat.ts a.ts",
"output": "a_fixed.out"
}]
}