panache 2.39.0

An LSP, formatter, and linter for Pandoc markdown, Quarto, and RMarkdown
# Let Git auto-detect text files
* text=auto

# All test case input/expected files should use LF by default (for consistent AST across platforms)
tests/fixtures/cases/*/*.md eol=lf
tests/fixtures/cases/*/*.qmd eol=lf
tests/fixtures/cases/*/*.Rmd eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.md eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.qmd eol=lf
crates/panache-parser/tests/fixtures/cases/*/*.Rmd eol=lf
tests/fixtures/bibtex_samples/*.bib eol=lf
crates/panache-parser/tests/fixtures/yaml-test-suite/**/in.yaml eol=lf

# Preserve CRLF in test cases that specifically test CRLF handling (must have CRLF line endings)
tests/fixtures/cases/crlf_*/* -text
tests/fixtures/cases/line_ending_crlf/* -text
tests/fixtures/cases/line_ending_lf/* -text
crates/panache-parser/tests/fixtures/cases/crlf_*/* -text
crates/panache-parser/tests/fixtures/cases/line_ending_crlf/* -text
crates/panache-parser/tests/fixtures/cases/line_ending_lf/* -text
tests/fixtures/bibtex_samples/bibtex_crlf.bib -text

# CST fixtures (parser-internal) should use LF endings
tests/fixtures/bibtex_samples/*.cst eol=lf

# Other test cases can use LF (the default for most projects)
# Individual test cases can override if needed