Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/crossr/reasonfuzz
- Owner: CrossR
- License: mit
- Created: 2019-03-04T17:54:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-29T23:26:44.000Z (about 4 years ago)
- Last Synced: 2023-03-11T14:41:43.028Z (almost 2 years ago)
- Topics: fuzzy-matching, ocaml, reasonml
- Language: Reason
- Homepage:
- Size: 1.27 MB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```