Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: domluna/JuliaFormatter.jl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.6
Choose a base ref
...
head repository: domluna/JuliaFormatter.jl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.0
Choose a head ref
  • 2 commits
  • 9 files changed
  • 2 contributors

Commits on Sep 20, 2025

  1. use Aqua (#939)

    rafaqz authored Sep 20, 2025
    Configuration menu
    Copy the full SHA
    d98610d View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2025

  1. Add executable app for language server integration (#947)

    * Add executable app for language server integration
    
    Implement a CLI executable app that can be invoked as `jlfmt` or
    `julia -m JuliaFormatter`, enabling integration with language servers
    (JETLS in particular, which already integrates Runic in a similar way).
    
    The app is registered in Project.toml under `[apps.jlfmt]` to
    enable command line invocation when JuliaFormatter is installed as an
    executable app (i.e. `pkg> app add JuliaFormatter`).
    
    The implementation follows Runic's executable app interface design:
    - Similar command-line options (`-h/--help`, `--check`, `--diff`, `--inplace`, etc.)
    - Recursive directory scanning for Julia files
    - Support for stdin/stdout piping
    - Progress reporting with colored output
    - Git diff integration for showing formatting changes
    - Multi-threaded formatting for multiple files
    
    Notable differences from Runic:
    - No `--lines` option for partial file formatting (not yet implemented)
    - Extensive formatting options exposed via CLI flags (style, indent, margin, etc.)
    - Integration with .JuliaFormatter.toml configuration files
    - `--config-priority` flag for language server integration
    
    Comprehensive CLI documentation is also added (docs/src/cli.md).
    
    * update docs to explain `--config-dir` option
    aviatesk authored Nov 5, 2025
    2 Configuration menu
    Copy the full SHA
    cccfe0b View commit details
    Browse the repository at this point in the history
Loading