mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
0dbeb774ba
This commit adds support for configuration file for "deno fmt" subcommand. It is also respected by LSP when formatting files. Example configuration: { "fmt": { "files": { "include": ["src/"], "exclude": ["src/testdata/"] }, "options": { "useTabs": true, "lineWidth": 80, "indentWidth": 4, "singleQuote": true, "textWrap": "preserve" } } }
118 B
118 B
Hello
function foo() {
return 42;
}
foo();
function bar(): number {
return 42;
}
bar();