Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frenchy64/lein-dynalint
Leiningen plugin for Dynalint
https://github.com/frenchy64/lein-dynalint
Last synced: about 1 month ago
JSON representation
Leiningen plugin for Dynalint
- Host: GitHub
- URL: https://github.com/frenchy64/lein-dynalint
- Owner: frenchy64
- Created: 2014-01-11T14:24:00.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-21T00:47:57.000Z (over 9 years ago)
- Last Synced: 2024-10-03T07:56:47.071Z (about 2 months ago)
- Language: Clojure
- Size: 178 KB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# lein-dynalint
A Leiningen plugin for [Dynalint](https://github.com/frenchy64/dynalint).
WARNING: Currently `lein-dynalint` only lints calls to Clojure
functions from within Leiningen, not from code running in your
project. See the [Dynalint](https://github.com/frenchy64/dynalint)
page for how to lint your code. See [this
issue](https://github.com/frenchy64/lein-dynalint/issues/2) if you are
interested in finding a way to improve `lein-dynalint` so it lints
your code.## Quickstart
Run `lein dynalint`.
## Installation
Use this for user-level plugins:
Put `[lein-dynalint "0.1.4"]` into the `:plugins` vector of your
`:user` profile, or if you are on Leiningen 1.x do `lein plugin install
lein-dynalint 0.1.4`.Use this for project-level plugins:
Put `[lein-dynalint "0.1.4"]` into the `:plugins` vector of your project.clj.
A specific version of [Dynalint](https://github.com/frenchy64/dynalint)
must be declared as a dependency in the respective user- or project-level
`:plugins` vector.## Usage
Currently the only command is
```
lein dynalint test
```This runs your unit tests with the linter loaded.
If an `:output` keyword argument is given, the verbose warnings are dumped to
the give file name under `target/dynalint-outout`. `:output` defaults to `output`.```
lein dynalint test :output my-output
```## License
Copyright © 2014 Ambrose
Distributed under the Eclipse Public License, the same as Clojure.