Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-23 | feat(fmt): stabilize CSS, HTML and YAML formatters (#25753) | Bartek IwaĆczuk | |
This commits stabilizes CSS, HTML and YAML formatters in `deno fmt`. It is no longer required to use either of these flags: - `--unstable-css` - `--unstable-html` - `--unstable-yaml` Or these `unstable` options in the config file: - `fmt-css` - `fmt-html` - `html-yaml` | |||
2024-08-02 | feat(unstable/fmt): move yaml formatting behind unstable flag (#24848) | David Sherret | |
This moves YAML formatting behind an unstable flag for Deno 1.46. This will make it opt-in to start and then we can remove the flag to make it on by default in version of Deno after that. This can be specified by doing `deno fmt --unstable-yaml` or by specifying the following in a deno.json file: ```json { "unstable": ["fmt-yaml"] } ``` |