aboutsummaryrefslogtreecommitdiffstats
path: root/doc/conform.txt
AgeCommit message (Collapse)Author
2023-11-06[docgen] Update docsGithub Actions
skip-checks: true
2023-11-05[docgen] Update docsGithub Actions
skip-checks: true
2023-11-05[docgen] Update docsGithub Actions
skip-checks: true
2023-11-04feat: allow formatters_by_ft to be a function (#174)Steven Arcangeli
2023-11-04[docgen] Update docsGithub Actions
skip-checks: true
2023-10-31[docgen] Update docsGithub Actions
skip-checks: true
2023-10-31feat: add markdownlint-cli2 (#171)George Guimarães
cli2 is a better cli for markdownlint. It allows to have config files in different directories, and it's also from the same author as the original node.js markdownlint lib.
2023-10-30feat: add usort (#167)Frederik Buchlák
* feat: add usort * formatting via stdin
2023-10-28[docgen] Update docsGithub Actions
skip-checks: true
2023-10-28feat: add CSharpier (#165)Jesper Lundberg
* Add formatter and update readme and conform.txt * Remove unused variable
2023-10-27feat: add tlint (#162)Frederik Buchlák
* feat: add tlint * update doc
2023-10-26feat: add pretty-php (#161)Frederik Buchlák
2023-10-22[docgen] Update docsGithub Actions
skip-checks: true
2023-10-20[docgen] Update docsGithub Actions
skip-checks: true
2023-10-17[docgen] Update docsGithub Actions
skip-checks: true
2023-10-16[docgen] Update docsGithub Actions
skip-checks: true
2023-10-16[docgen] Update docsGithub Actions
skip-checks: true
2023-10-15feat!: merge configs in conform.formatters with defaults (#140)Steven Arcangeli
This breaking change should make it significantly easier to modify formatters. While I expect 99% of configs to be backwards-compatible, this can still potentially cause problems. If you: * define a formatter in the `formatters` option * that has the same name as a built-in formatter * and omits a property from the original formatter (e.g. leaves out `range_args` or `cwd`) Then you may encounter breaking behavior from this commit, because now your config definition will be merged with the built-in definition, and so will inherit those omitted properties. This config merging behavior can be opted-out of by adding `inherit = false` to your formatter config.
2023-10-15[docgen] Update docsGithub Actions
skip-checks: true
2023-10-15[docgen] Update docsGithub Actions
skip-checks: true
2023-10-14[docgen] Update docsGithub Actions
skip-checks: true
2023-10-13[docgen] Update docsGithub Actions
skip-checks: true
2023-10-11[docgen] Update docsGithub Actions
skip-checks: true
2023-10-11feat: add rufo support (#132)Estifanos Beyene
* feat: add rufo support * feat: shorter description
2023-10-09doc: enforce period at end of formatter descriptionSteven Arcangeli
2023-10-09[docgen] Update docsGithub Actions
skip-checks: true
2023-10-09feat: add fixjson (#126)Magnus Larsen
Co-authored-by: Magnus Larsen <mlar@novozymes.com>
2023-10-06feat: add easy-coding-standard (#121)Frederik Buchlák
* feat: add easy-coding-standard * fix executable
2023-10-06[docgen] Update docsGithub Actions
skip-checks: true
2023-10-04[docgen] Update docsGithub Actions
skip-checks: true
2023-10-04[docgen] Update docsGithub Actions
skip-checks: true
2023-10-03[docgen] Update docsGithub Actions
skip-checks: true
2023-10-02[docgen] Update docsGithub Actions
skip-checks: true
2023-10-02[docgen] Update docsGithub Actions
skip-checks: true
2023-09-30feat: add standardrb (#91)Kerem Bozdas
* feat: add standardrb formatter * [docgen] Update docs skip-checks: true --------- Co-authored-by: Github Actions <actions@github>
2023-09-29feat: format injected languages (#83)Steven Arcangeli
2023-09-29[docgen] Update docsGithub Actions
skip-checks: true
2023-09-28[docgen] Update docsGithub Actions
skip-checks: true
2023-09-27[docgen] Update docsGithub Actions
skip-checks: true
2023-09-26[docgen] Update docsGithub Actions
skip-checks: true
2023-09-25[docgen] Update docsGithub Actions
skip-checks: true
2023-09-22[docgen] Update docsGithub Actions
skip-checks: true
2023-09-22[docgen] Update docsGithub Actions
skip-checks: true
2023-09-21feat: add mdformat (#68)Ryan Preston
* feat(formatters): add mdformat for markdown formatting * docs: add mdformat to readme and conform.txt
2023-09-21refactor: rename ruff -> ruff_fixSteven Arcangeli
2023-09-21[docgen] Update docsGithub Actions
skip-checks: true
2023-09-21feat: add ruff formatter and improve ruff root finding (#66)Leiser Fernández Gallo
* Add ruff formatter and improve ruff root finding * Add docs
2023-09-18doc: remove irrelevant note about '*' filetypeSteven Arcangeli
2023-09-18[docgen] Update docsGithub Actions
skip-checks: true
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.