Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/crossr/reasonfuzz

Fuzzy matching for Reason.
https://github.com/crossr/reasonfuzz

fuzzy-matching ocaml reasonml

Last synced: 3 months ago
JSON representation

Fuzzy matching for Reason.

Awesome Lists containing this project

README

        

# ReasonFuzz

[![Build Status](https://dev.azure.com/CrossR-1/reasonFuzz/_apis/build/status/CrossR.reasonFuzz?branchName=master)](https://dev.azure.com/CrossR-1/reasonFuzz/_build/latest?definitionId=3&branchName=master)

Fuzzy matching algorithms in Reason, converted from https://github.com/lotabout/fuzzy-matcher.

TODO:
- [x] : Generic/ClangD Matcher.
- [ ] : Check performance.
- [ ] : Compare scores to original algorithm.
- [X] : Path Specific matcher.
- [ ] : Check performance.
- [X] : Compare scores to original algorithm.

**Contains the following libraries and executables:**

```
[email protected]

├─test/
│ name: RunTests.exe
│ main: RunTests.re
│ require: ReasonFuzz

└─library/
library name: ReasonFuzz
namespace: ReasonFuzz
```

## Developing:

```
npm install -g esy
git clone
esy install
esy build
```

## Running Tests:

```
# Runs the "test" command in `package.json`.
esy test
```