Files
fil/packages/elixir/lib/kreuzberg/tree_sitter_config.ex

52 lines
1.3 KiB
Elixir
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule Kreuzberg.TreeSitterConfig do
@moduledoc """
Configuration for tree-sitter language pack integration.
Controls grammar download behavior and code analysis options.
# Example (TOML)
```toml
[tree_sitter]
languages = ["python", "rust"]
groups = ["web"]
[tree_sitter.process]
structure = true
comments = true
docstrings = true
```
"""
@typedoc "Configuration for tree-sitter language pack integration."
@type t :: %__MODULE__{
enabled: boolean(),
cache_dir: String.t() | nil,
languages: [String.t()] | nil,
groups: [String.t()] | nil,
process: map()
}
defstruct enabled: true,
cache_dir: nil,
languages: nil,
groups: nil,
process: nil
defimpl Jason.Encoder do
@doc false
def encode(value, opts) do
value
|> Map.from_struct()
|> Enum.reject(fn {_k, v} -> v == nil end)
|> Enum.into(%{})
|> Jason.Encoder.encode(opts)
end
end
end