mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
16036a8a51
This commit adds support for formatting markdown files with "deno fmt". Additionally "--ext={js|jsx|ts|tsx|md}" flag was added to "deno fmt" that allows to specify file type when providing contents over stdio.
118 B
118 B
Hello
function foo() {
return 42;
}
foo();
function bar(): number {
return 42;
}
bar();