Spellweaver

An Elixir-wrapped spell checker for code.

This library takes Bun as a runtime, downloads cspell and uses it to check the spelling in your Elixir code. Intended for CI usage.

Installation

Install using igniter to also get offered a default .cspell.json config:

mix archive.install hex igniter_new
mix igniter.install spellweaver

Or manually by adding spellweaver to your list of dependencies in mix.exs:

def deps do
  [
    {:spellweaver, "~> 0.1.0"}
  ]
end