Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-13 | feat(fmt): add support for configuration file (#11944) | Bartek IwaĆczuk | |
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" } } } |