1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 16:42:21 -05:00
denoland-deno/cli/tests/lint/file2.ts
2020-06-09 18:40:08 +02:00

9 lines
171 B
TypeScript

try {
await Deno.open("./some/file.txt");
} catch (e) {}
// deno-lint-ignore no-explicit-any require-await
function foo(): any {}
// deno-lint-ignore
while (false) {}