hledger-fmt

Crates.iohledger-fmt
lib.rshledger-fmt
version0.3.0
created_at2024-09-27 12:30:01.668038+00
updated_at2025-09-16 12:04:12.47323+00
descriptionAn opinionated hledger's journal files formatter.
homepage
repositoryhttps://github.com/mondeja/hledger-fmt
max_upload_size
id1388623
size152,009
Álvaro Mondéjar Rubio (mondeja)

documentation

README

hledger-fmt

Crates.io docs.rs Tests License

An opinionated hledger's journal files formatter.

Installation

Crates.io downloads GitHub downloads

Standalone pre-built binaries

Download standalone pre-built binaries from releases page.

Cargo binaries

Install from pre-built binaries using cargo-binstall:

cargo binstall hledger-fmt

Build from source

Build from source using cargo:

cargo install hledger-fmt

pre-commit

Use it with pre-commit by adding the hook to your .pre-commit-config.yaml:

repos:
  - repo: https://github.com/mondeja/hledger-fmt
    rev: vX.Y.Z
    hooks:
      # id: hledger-fmt       # Use this id to format files in place
      - id: hledger-fmt-check # Use this id to check files without formatting

VS Code

With hledger-fmt in your PATH, use the Custom Local Formatters extension. Just install it and add the next configuration to your settings.json:

{
  "customLocalFormatters.formatters": [
    {
      "command": "hledger-fmt - --no-diff --exit-zero-on-changes",
      "languages": ["hledger"]
    }
  ]
}

To format on save:

{
  "editor.formatOnSave": true
}

Zed

With hledger-fmt in your PATH, add the next configuration to your settings.json:

{
  "languages": {
    "Ledger": {
      "formatter": {
        "external": {
          "command": "hledger-fmt",
          "arguments": ["--no-diff", "--exit-zero-on-changes"]
        }
      }
    }
  }
}

To format on save:

{
  "format_on_save": "on"
}

Library

You can use hledger-fmt as a standalone library in your Rust projects. Add the following to your Cargo.toml:

[dependencies]
hledger-fmt = { version = "0.2", default-features = false }

Usage

CLI

When you don't pass files to format, it reads all the files with the extensions .journal, .hledger and .j in the current directory and its subdirectories.

hledger-fmt [OPTIONS] [FILES]...

To fix them in place, use the --fix option:

[!WARNING]
This is a potentially destructive operation. Make sure to make a backup of your files before running this command for the first time.

hledger-fmt --fix [FILES]...

See hledger-fmt --help for more information.

Library

use hledger_fmt::format_journal;

fn main() {
    let journal = r#"
2024-01-01 * "Sample transaction"
    Assets:Cash  $100
    Expenses:Food  $100
"#;
    let result = format_journal(journal, true).unwrap();
    match result {
        Ok(formatted) => println!("{formatted}"),
        Err(e) => eprintln!("Error formatting journal: {e}"),
    }
}

Features

  • color (enabled by default): Build with terminal color support.
  • auto-color (enabled by default): Automatically detects if your terminal supports colors.
  • diff (enabled by default): Show a diff of the changes made to the files. Adds the --no-diff option to disable it.
  • cli (enabled by default): Build the CLI tool.
Commit count: 40

cargo fmt