mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
3242550f5f
`deno fmt --check` was broken for CSS, YAML and HTML files. Before this PR, formatting any of these file types would return a string, even though the contract in `cli/tools/fmt.rs` is to only return a string if the formatting changed. This causes wrong flagging of these files as being badly formatted even though diffs showed nothing (because they were in fact formatted properly). Closes https://github.com/denoland/deno/issues/25840
13 lines
292 B
Text
13 lines
292 B
Text
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"badly_formatted": {
|
|
"args": "fmt badly_formatted.css",
|
|
"output": "[WILDLINE]badly_formatted.css\nChecked 1 file\n"
|
|
},
|
|
"well_formatted": {
|
|
"args": "fmt --check well_formatted.css",
|
|
"output": "Checked 1 file\n"
|
|
}
|
|
}
|
|
}
|