aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-09-18chore(master): release 3.4.0 (#60)v3.4.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-18[docgen] Update docsGithub Actions
skip-checks: true
2023-09-18feat: add `squeeze_blanks` (#62)pseudometa
2023-09-17feat: make lsp_fallback behavior more intuitive (#59)Steven Arcangeli
When lsp_fallback = true AND the only formatters for the buffer are from the "*" or "_" filetype, format with LSP instead of the "*"/"_" formatters.
2023-09-16chore(master): release 3.3.0 (#51)v3.3.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-16fix: ConformInfo shows available LSP formattersSteven Arcangeli
2023-09-16fix: LSP formatter respects quiet = trueSteven Arcangeli
2023-09-16fix: unify timeout error message format with LSPSteven Arcangeli
2023-09-15feat: '_' filetype to define fallback formattersSteven Arcangeli
2023-09-16[docgen] Update docsGithub Actions
skip-checks: true
2023-09-15Feat: Add rustywind formatter (#56)Eric Milford
* Feat: Add rustywind formatter This adds the rustywind, a CLI for organizing Tailwind CSS classes. * Update meta description
2023-09-15feat: utility function to extend the built-in formatter args (#50)Steven Arcangeli
2023-09-15feat: provide a formatexpr (#55)Steven Arcangeli
2023-09-15[docgen] Update docsGithub Actions
skip-checks: true
2023-09-15feat: add GNU/BSD indent (#54)Thim Cederlund
2023-09-15[docgen] Update docsGithub Actions
skip-checks: true
2023-09-15feat: add shellcheck (#44)Steven Arcangeli
2023-09-15feat: allow running commands in a shell (#49)Steven Arcangeli
2023-09-15[docgen] Update docsGithub Actions
skip-checks: true
2023-09-15doc: recipe for automatically running slow formatters asyncSteven Arcangeli
2023-09-15feat: format_on_save functions can return a callback as the second valueSteven Arcangeli
2023-09-15fix: `q` keymap in ConformInfo and `codespell` exit codes (#53)pseudometa
* fix: `codespell` error when trying to fix ambiguous misspelling * fix: delay when having a keymap with `q` as operator
2023-09-15[docgen] Update docsGithub Actions
skip-checks: true
2023-09-15feat: alejandra formatter (#52)Leiser Fernández Gallo
2023-09-14fix: use non-deprecated health report functions if available (#48)Maria José Solano
2023-09-14chore(master): release 3.2.0 (#37)v3.2.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-14[docgen] Update docsGithub Actions
skip-checks: true
2023-09-14feat: add `markdownlint`, `stylelint`, `codespell`, and `biome` (#45)pseudometa
* feat: add markdownlint, stylelint & codespell * feat: add `biome` * fix: indentation
2023-09-14feat: add deno fmt (#46)Riley Bruins
2023-09-14[docgen] Update docsGithub Actions
skip-checks: true
2023-09-14feat: add djlint (#47)zootedb0t
2023-09-14[docgen] Update docsGithub Actions
skip-checks: true
2023-09-14feat: add buf as protobuf linter (#43)buz
2023-09-14[docgen] Update docsGithub Actions
skip-checks: true
2023-09-14feat: latexindent (#42)Isak Samsten
2023-09-14feat: ruff (#41)Isak Samsten
2023-09-14doc: add some recipes to the documentationSteven Arcangeli
2023-09-13doc: document the format options that are passed through to LSP formattingSteven Arcangeli
2023-09-13fix: extra trailing newline for LSP formatters that replace entire fileSteven Arcangeli
2023-09-13chore(master): release 3.1.0 (#34)v3.1.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-12doc: add a features section to the READMESteven Arcangeli
2023-09-12fix: modify diff calculation to handle end-of-file newlines better (#35)Steven Arcangeli
2023-09-10feat: format_on_save and format_after_save can be functionsSteven Arcangeli
2023-09-10chore(master): release 3.0.0 (#32)v3.0.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-08Merge pull request #33 from stevearc/stevearc-refactorSteven Arcangeli
New config syntax for "run first" vs "run all"
2023-09-08test: add tests for public API functionsSteven Arcangeli
2023-09-08feat: format() can always fall back to LSP formattingSteven Arcangeli
2023-09-08doc: document the "*" filetype optionSteven Arcangeli
2023-09-08feat: syntax for using first available formatterSteven Arcangeli
Alternations are now supported. You can specify a sub-list in place of a formatter name and conform will use the first formatter in that list that is available. For example, this will use either prettierd or prettier (whichever is available), and then always trim whitespace afterwards: conform.format(formatters = { { "prettierd", "prettier" }, "trim_whitespace" }) This syntax is available both in the formatters_by_ft config option and in the `formatters` argument of the `format` method.
2023-09-07refactor!: remove run_all_formatters config optionSteven Arcangeli
run_all_formatters is now the default. To only run the first formatter (the previous behavior), see the next commit