panache 2.43.1

An LSP, formatter, and linter for Markdown, Quarto, and R Markdown
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! CLI integration tests for panache.
//!
//! These tests execute the compiled binary and verify CLI behavior including:
//! - Subcommand behavior (format, parse, lint, lsp)
//! - Stdin/stdout handling
//! - Exit codes
//! - File I/O operations
//! - Error handling

mod cache;
mod common;
mod debug;
mod format;
mod lint;
mod parse;

#[cfg(feature = "lsp")]
mod lsp;