docs(configuration): improve clarity and formatting in configuration documentation

This commit is contained in:
elipeter 2026-05-22 09:42:18 -05:00
parent 9062cd652a
commit 32211079a0
32 changed files with 717 additions and 380 deletions

View file

@ -24,10 +24,7 @@ const ADAPTER_NAME: &str = "migration-go-migrate";
fn callee_is_go_migrate(name: &str) -> bool {
let last = name.rsplit_once('.').map(|(_, s)| s).unwrap_or(name);
matches!(
last,
"Up" | "Down" | "Steps" | "Migrate" | "Force" | "Drop"
)
matches!(last, "Up" | "Down" | "Steps" | "Migrate" | "Force" | "Drop")
}
fn source_imports_go_migrate(file_bytes: &[u8]) -> bool {