mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04: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" } } }
12 lines
209 B
Text
12 lines
209 B
Text
{
|
|
"fmt": {
|
|
"files": {
|
|
"include": ["fmt/fmt_with_config/"],
|
|
"exclude": ["fmt/fmt_with_config/b.ts"],
|
|
"dont_know_this_field": {}
|
|
},
|
|
"options": {
|
|
"useTabs": true
|
|
}
|
|
}
|
|
}
|