Files
searxng/.helix/languages.toml
T
Bnyro 41c98b3b41 [chore] devops: add languages config for helix editor
The default Helix configuration for Python is different,
so the pylint warnings aren't shown and the formatter
re-formats files by accident when you edit an existing file.

Therefore, this commit adds `python` language configuration
to ease developing SearXNG with Helix Editor [^1].

[^1]: https://helix-editor.com
2026-06-10 17:38:01 +02:00

11 lines
224 B
TOML

[[language]]
name = "python"
language-servers = ["basedpyright", "pylsp"]
formatter = { command = "black", args = [
"--target-version",
"py311",
"--line-length",
"120",
"--skip-string-normalization",
] }