Michał Bartoszkiewicz
Michał Bartoszkiewicz
When `$DIR/typos.toml` contains ```toml [files] extend-exclude = ["a/*.txt"] ``` and we run `typos` in `$DIR`, the file `a/test.txt` is correctly excluded. But when `typos` is run in `$DIR/a`, the exclude...
Running `typos` (v1.12.8, binary from GitHub release) with `typos.toml` containing: ```toml [default] locale = "en-us" ``` causes some interesting suggestions: ``` error: `ret` should be `ert` --> ./foo.txt:1:1 | 1...
**Is your feature request related to a problem? Please describe.** It's easy to forget doing `pw.run()`, which results in no computation taking place, which can be confusing. **Describe the solution...
### Describe the bug The computed `L2sq` distances seem to be always 0. ### Steps to reproduce ```rust use usearch::ffi::{IndexOptions, MetricKind}; use usearch::new_index; fn main() { let options = IndexOptions...