]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-clojure.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-clojure.txt
1 ===============================================================================
2 ALE Clojure Integration                                   *ale-clojure-options*
3
4
5 ===============================================================================
6 clj-kondo                                               *ale-clojure-clj-kondo*
7
8 A minimal and opinionated linter for code that sparks joy.
9
10 https://github.com/borkdude/clj-kondo
11
12
13 -------------------------------------------------------------------------------
14 Options
15                                         *ale-options.clojure_clj_kondo_options*
16                                               *g:ale_clojure_clj_kondo_options*
17                                               *b:ale_clojure_clj_kondo_options*
18 clojure_clj_kondo_options
19 g:ale_clojure_clj_kondo_options
20   Type: |String|
21   Default: `'--cache'`
22
23   This variable can be changed to modify options passed to clj-kondo.
24
25
26 ===============================================================================
27 cljfmt                                                     *ale-clojure-cljfmt*
28
29 cljfmt is a linter and fixer for Clojure code, with defaults adhering to the
30 Clojure Style Guide (see https://guide.clojure.style/ )
31
32 https://github.com/weavejester/cljfmt
33
34 Linting options are not configurable by ale, but instead are controlled by
35 Leiningen, or a cljfmt file in the current or parent directories.
36
37 see https://github.com/weavejester/cljfmt#Configuration for more information.
38
39 ===============================================================================
40 joker                                                       *ale-clojure-joker*
41
42 Joker is a small Clojure interpreter and linter written in Go.
43
44 https://github.com/candid82/joker
45
46 Linting options are not configurable by ale, but instead are controlled by a
47 `.joker` file in same directory as the file (or current working directory if
48 linting stdin), a parent directory relative to the file, or the users home
49 directory.
50
51 see https://github.com/candid82/joker#linter-mode for more information.
52
53
54 ===============================================================================
55   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: