Liking cljdoc? Tell your friends :D

noahtheduke.splint

Entry-point for splint. Loads all of the lints up front, delegates all work to library functions.

Entry-point for splint. Loads all of the lints up front, delegates all work
to library functions.
raw docstring

noahtheduke.splint.diagnostic

Namespace for all Diagnostics-related functionality.

A Diagnostic is an instance of a match of a rule's pattern in a given analyzed code. It has the following definition:

(defrecord Diagnostic
  [rule-name form message alt line column end-line end-column filename exception])
Namespace for all Diagnostics-related functionality.

A Diagnostic is an instance of a match of a rule's pattern in a given
analyzed code. It has the following definition:

```clojure
(defrecord Diagnostic
  [rule-name form message alt line column end-line end-column filename exception])
```
raw docstring

noahtheduke.splint.rules

All rules-related functionality.

Rules don't actually use defrecord, but act like they do with the following definition:

(defrecord Rule [name genre full-name docstring init-type pattern-raw replace-raw message min-clojure-version ext pattern patterns on-match autocorrect])

All rules-related functionality.

Rules don't actually use defrecord, but act like they do with the following definition:

(defrecord Rule
  [name genre full-name docstring init-type pattern-raw replace-raw message min-clojure-version ext pattern patterns on-match autocorrect])
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close