]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-pug.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:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-pug.txt
1 ===============================================================================
2 ALE Pug Integration                                           *ale-pug-options*
3
4
5 ===============================================================================
6 puglint                                                       *ale-pug-puglint*
7
8 The puglint linter will detect configuration files based on the path to the
9 filename automatically. Configuration files will be loaded in this order:
10
11 1. `.pug-lintrc`
12 2. `.pug-lintrc.js`
13 3. `.pug-lintrc.json`
14 4. `package.json`
15
16 You might need to create a configuration file for your project to get
17 meaningful results.
18
19                                            *ale-options.pug_puglint_executable*
20                                                  *g:ale_pug_puglint_executable*
21                                                  *b:ale_pug_puglint_executable*
22 pug_puglint_executable
23 g:ale_pug_puglint_executable
24   Type: |String|
25   Default: `'pug-lint'`
26
27   See |ale-integrations-local-executables|
28
29                                               *ale-options.pug_puglint_options*
30                                                     *g:ale_pug_puglint_options*
31                                                     *b:ale_pug_puglint_options*
32 pug_puglint_options
33 g:ale_pug_puglint_options
34   Type: |String|
35   Default: `''`
36
37   This variable can be set to pass additional options to pug-lint.
38
39                                            *ale-options.pug_puglint_use_global*
40                                                  *g:ale_pug_puglint_use_global*
41                                                  *b:ale_pug_puglint_use_global*
42 pug_puglint_use_global
43 g:ale_pug_puglint_use_global
44   Type: |Number|
45   Default: `get(g:, 'ale_use_global_executables', 0)`
46
47   See |ale-integrations-local-executables|
48
49
50 ===============================================================================
51   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: