aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-01-02Fix(black): formatting excluded files results in blank buffer (#254)Eric Bartels
* Fix(black): formatting excluded files results in blank buffer (#249) * Fixed stylua formatting * Fixed more stylua formatting * Log buffer name and change from trace to warning * Test fix: set_formatter_output funtion was moved out of test_util * Avoid blank output triggering errors in fuzzer tests
2024-01-02[docgen] Update docsGithub Actions
skip-checks: true
2024-01-02feat: add xmllint formatter (#259)chefe
* feat: add xmllint formatter * doc: shorten xmllint description --------- Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2023-12-28ci: request review on PR synchronizeSteven Arcangeli
2023-12-26docs: autogenerate formatter options docs (#234)Steven Arcangeli
2023-12-26chore(master): release 5.1.0 (#243)v5.1.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-12-26refactor(injected): use included_regions instead of private methods (#253)Steven Arcangeli
2023-12-26fix(injected): code block at end of markdown fileSteven Arcangeli
2023-12-26fix(injected): handle inline injections (#251)Steven Arcangeli
2023-12-24fix(prettier): use correct prettier executable on windows (#236)Steven Arcangeli
2023-12-23fix: crash in error handlingSteven Arcangeli
2023-12-11[docgen] Update docsGithub Actions
skip-checks: true
2023-12-11feat: add fnlfmt formatter (#247)Marcin Puc
2023-12-11fix(rubocop): pass --server for faster execution (#246)Paweł Gościcki
This ensures a much quicker execution on 2nd and any subsequent run. Otherwise there's always a 1-3 seconds delay before formatting is being applied (as rubocop is not that quick). From rubocop's documentation: ``` --server If a server process has not been started yet, start the server process and execute inspection with server. ```
2023-12-10feat: ConformInfo shows path to executable (#244)agoodshort
2023-12-10ci: trying again to fix auto-request reviewSteven Arcangeli
2023-12-09feat(prettier): add `options` for configuring prettier parser based on ↵Micah Halter
filetype and extension (#241)
2023-12-07fix(formatexpr): does not fallback to the built-in formatexpr (#238)Jongwook Choi
This makes the behavior of formatexpr more consistent with `vim.lsp.formatexpr`; do not run vim's builtin formatter. Problem: When conform's formatexpr is used and (range or buffer) but conform can't do formatting and there is no LSP formatter with the formatting capabilities, it will fall back to the (wrong) built-in formatting, which might result in simply concatenating all the words. This is a breaking change, reverting the behavior introduced in #55.
2023-12-07chore(master): release 5.0.0 (#237)v5.0.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-12-07[docgen] Update docsGithub Actions
skip-checks: true
2023-12-07feat: add joker for clojure formatting (#240)Zoltán Reegn
2023-12-07[docgen] Update docsGithub Actions
skip-checks: true
2023-12-07feat: add asmfmt (#239)Xun
2023-12-07ci: add proper permissions for request review actionSteven Arcangeli
2023-12-06refactor!: formatter config functions take self as first argument (#233)Steven Arcangeli
This is a breaking API change, but there is a shim in place that will keep existing functions working, just with a warning notification. Most people should not encounter this at all. For anyone overriding a formatter config value with a function that takes `(ctx)` as the parameter, it will need to be updated to take `(self, ctx)`.
2023-12-06chore(master): release 4.3.0 (#190)v4.3.0github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-12-06fix: various fixes for the `injected` formatter (#235)Micah Halter
* fix: load temp buffer once created to load the context for formatters * fix: use `_injection_query` to decide if the `injection` formatter is valid
2023-12-05chore: feature request template and add severity to bug report templateSteven Arcangeli
2023-12-04ci: remove the changes requested automationSteven Arcangeli
2023-12-05[docgen] Update docsGithub Actions
skip-checks: true
2023-12-04feat: add jsonnetfmt (#230)Daniel
* feat: add jsonnetfmt * fix: use stdin * docs: adjust name * docs: adjust url
2023-12-04ci: attempt to fix the changes requested comment flowSteven Arcangeli
2023-12-04ci: experiment with more issue/PR workflow automationSteven Arcangeli
2023-12-03fix(biome): use binary from node_modules (#226)Francesco Pasqua
* chore: remove $FILENAME from standardjs config * fix(biome): use first local executable over global
2023-12-04[docgen] Update docsGithub Actions
skip-checks: true
2023-12-03feat: add autocorrect (#223)z775729168
2023-12-01fix: invalid prettier configuration in last commitSteven Arcangeli
2023-11-29ci: workflow automationSteven Arcangeli
2023-11-27fix(biome): perform formatting over stdin (#220)pseudometa
With the release of v1.4.0, biome now supports the arguments needed for formatting via stdin/stdout. If you are using an older version of biome, you can override the formatter configuration to use the previous settings.
2023-11-27[docgen] Update docsGithub Actions
skip-checks: true
2023-11-27feat: add support for sqlfluff (#213)Frederik Buchlák
2023-11-27fix: respect excluded-files-config from `typos.toml` (#219)pseudometa
2023-11-25[docgen] Update docsGithub Actions
skip-checks: true
2023-11-25feat: add support for buildifier (#216)Damien Deville
2023-11-24[docgen] Update docsGithub Actions
skip-checks: true
2023-11-23feat: add `typos` (#214)pseudometa
2023-11-21[docgen] Update docsGithub Actions
skip-checks: true
2023-11-21feat: add beancount formatter (#212)Varac
* feat: add beancount formatter * lint: remove unused require --------- Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2023-11-20[docgen] Update docsGithub Actions
skip-checks: true
2023-11-20feat: add fourmolu support (#209)KorigamiK