├── .gitignore ├── .travis.yml ├── 4.02 └── compat.ml ├── 4.03 └── compat.ml ├── 4.04 └── compat.ml ├── CHANGES.md ├── LICENSE.md ├── README.md ├── _tags ├── example_plugin.ml ├── lib ├── ast_tools.ml ├── ast_tools.mli ├── ocamllint.ml ├── ocamllint.mli ├── ocamllint.mllib ├── ocamllint_config.ml ├── ocamllint_config.mli ├── ocamllint_context.ml ├── ocamllint_context.mli ├── ocamllint_plugin.ml ├── ocamllint_plugin.mli ├── ocamllint_rules.ml ├── ocamllint_rules.mli ├── ocamllint_warning.ml ├── ocamllint_warning.mli ├── typo.ml └── typo.mli ├── myocamlbuild.ml ├── opam ├── pkg ├── META └── pkg.ml ├── ppx └── ppx_lint.ml └── test └── tests.ml /.gitignore: -------------------------------------------------------------------------------- 1 | *.native 2 | *.install 3 | _build 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/.travis.yml -------------------------------------------------------------------------------- /4.02/compat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/4.02/compat.ml -------------------------------------------------------------------------------- /4.03/compat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/4.03/compat.ml -------------------------------------------------------------------------------- /4.04/compat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/4.04/compat.ml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/README.md -------------------------------------------------------------------------------- /_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/_tags -------------------------------------------------------------------------------- /example_plugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/example_plugin.ml -------------------------------------------------------------------------------- /lib/ast_tools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ast_tools.ml -------------------------------------------------------------------------------- /lib/ast_tools.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ast_tools.mli -------------------------------------------------------------------------------- /lib/ocamllint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint.ml -------------------------------------------------------------------------------- /lib/ocamllint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint.mli -------------------------------------------------------------------------------- /lib/ocamllint.mllib: -------------------------------------------------------------------------------- 1 | Ocamllint 2 | -------------------------------------------------------------------------------- /lib/ocamllint_config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_config.ml -------------------------------------------------------------------------------- /lib/ocamllint_config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_config.mli -------------------------------------------------------------------------------- /lib/ocamllint_context.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_context.ml -------------------------------------------------------------------------------- /lib/ocamllint_context.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_context.mli -------------------------------------------------------------------------------- /lib/ocamllint_plugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_plugin.ml -------------------------------------------------------------------------------- /lib/ocamllint_plugin.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_plugin.mli -------------------------------------------------------------------------------- /lib/ocamllint_rules.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_rules.ml -------------------------------------------------------------------------------- /lib/ocamllint_rules.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_rules.mli -------------------------------------------------------------------------------- /lib/ocamllint_warning.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_warning.ml -------------------------------------------------------------------------------- /lib/ocamllint_warning.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/ocamllint_warning.mli -------------------------------------------------------------------------------- /lib/typo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/typo.ml -------------------------------------------------------------------------------- /lib/typo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/lib/typo.mli -------------------------------------------------------------------------------- /myocamlbuild.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/myocamlbuild.ml -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/opam -------------------------------------------------------------------------------- /pkg/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/pkg/META -------------------------------------------------------------------------------- /pkg/pkg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/pkg/pkg.ml -------------------------------------------------------------------------------- /ppx/ppx_lint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/ppx/ppx_lint.ml -------------------------------------------------------------------------------- /test/tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosense/ocamllint/HEAD/test/tests.ml --------------------------------------------------------------------------------