Page
Library
Module
Module type
Parameter
Class
Class type
Source
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 4.14.0 (temporarily).
This project is dependent on compiler-libs, an inherently unstable library that changes between OCaml installations.
To install from the latest opam release, run: opam install camelot
Build: dune build bin/camelot.exe
Build + Watch: dune build bin/camelot.exe -w
To run tests: dune test
If any changes you make break code, dune test will flag it and highlight the differences. If there are no issues, dune will not print anything.
To write tests, see the dune documentation for expect-tests. If you implement a new rule, you'll have to do the following:
Add your test case ( a program that you expect the linter to show a match for) to either a new file or an existing file in the examples/ directory.
examples/ directory, edit the dune file's deps stanza to make it visible to the build system. If you create a new programs file in examples/, you'll have to add a new let%expect_test in the style of the ones prior to the file test.ml, except with the [%expect {| ... |} ] clause blank.dune runtest. If your code for linting worked, runtest should highlight that there was a difference due to your new rule - run dune promote to accept this difference. Only promote if the difference that dune shows is appropriate - if there is a difference in the linted output, verify that your code did not break things, fix the issue, and then promote.-d <lintdir> : Specify the directory in which to lint
-show <student | ta | gradescope | json> : Configure reporting output
gradescope outputs the number of violations and nothing more.ta outputs a quick description of violation, and where it occurred (lines/columns).json outputs the same information as ta, but in a json payload that can be utilized by an IDE for syntax highlighting (see IDE section below).student is the most verbose and outputs a quick description of violation, where it occurred (lines/columns), and how to fix it.-f <filename> : Lints the given file
Camelot has syntax highlighting support for Visual Studio Code using the camelot-vscode extension.
This project wouldn't have been possible without the following three repos: