2016-10-10 11:53:54 +00:00
|
|
|
*ale.txt* For Vim version 8.0. Last change: 2016 October 10
|
2016-11-02 06:19:24 +00:00
|
|
|
*ale*
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-10 11:53:54 +00:00
|
|
|
ALE - Asynchronous Lint Engine
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
CONTENTS *ale-contents*
|
|
|
|
|
2016-10-09 20:13:33 +00:00
|
|
|
1. Introduction...............................|ale-introduction|
|
|
|
|
2. Supported Languages & Tools................|ale-support|
|
|
|
|
3. Global Options.............................|ale-options|
|
|
|
|
4. Linter Specific Options....................|ale-linter-options|
|
2016-10-11 12:20:56 +00:00
|
|
|
4.1. eslint................................|ale-linter-options-eslint|
|
2016-11-01 09:00:08 +00:00
|
|
|
4.2. flow..................................|ale-linter-options-flow|
|
|
|
|
4.3. jshint................................|ale-linter-options-jshint|
|
|
|
|
4.4. phpcs.................................|ale-linter-options-phpcs|
|
|
|
|
4.5. html-tidy.............................|ale-linter-options-html-tidy|
|
|
|
|
4.6. c-gcc.................................|ale-linter-options-c-gcc|
|
|
|
|
4.7. cpp-gcc...............................|ale-linter-options-cpp-gcc|
|
|
|
|
4.8. fortran-gcc...........................|ale-linter-options-fortran-gcc|
|
|
|
|
4.9. shell.................................|ale-linter-options-shell|
|
|
|
|
4.10. shellcheck............................|ale-linter-options-shellcheck|
|
|
|
|
4.11. vint..................................|ale-linter-options-vint|
|
|
|
|
4.12. luacheck..............................|ale-linter-options-luacheck|
|
|
|
|
4.13. c-cppcheck............................|ale-linter-options-c-cppcheck|
|
|
|
|
4.14. cpp-cppcheck..........................|ale-linter-options-cpp-cppcheck|
|
|
|
|
4.15. htmlhint..............................|ale-linter-options-htmlhint|
|
2016-11-02 06:16:42 +00:00
|
|
|
4.16. c-clang...............................|ale-linter-options-c-clang|
|
2016-11-23 15:19:36 +00:00
|
|
|
4.17. python-flake8.........................|ale-linter-options-python-flake8|
|
2016-12-04 22:19:06 +00:00
|
|
|
4.18. ruby-rubocop..........................|ale-linter-options-ruby-rubocop|
|
|
|
|
4.19. chktex................................|ale-linter-options-chktex|
|
|
|
|
4.20. lacheck...............................|ale-linter-options-lacheck|
|
2016-11-23 15:19:36 +00:00
|
|
|
5. Linter Integration Notes...................|ale-linter-integration|
|
|
|
|
5.1. merlin................................|ale-linter-integration-ocaml-merlin|
|
|
|
|
6. Commands/Keybinds..........................|ale-commands|
|
|
|
|
7. API........................................|ale-api|
|
|
|
|
8. Special Thanks.............................|ale-special-thanks|
|
|
|
|
9. Contact....................................|ale-contact|
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
1. Introduction *ale-introduction*
|
|
|
|
|
|
|
|
ALE provides the means to run linters asynchronously in Vim in a variety of
|
|
|
|
languages and tools. ALE sends the contents of buffers to linter programs
|
|
|
|
using the |job-control| features available in Vim 8 and NeoVim. For Vim 8,
|
|
|
|
Vim must be compiled with the |job| and |channel| and |timer| features
|
|
|
|
as a minimum.
|
|
|
|
|
|
|
|
ALE supports the following key features:
|
|
|
|
|
|
|
|
1. Running linters when text is changed.
|
|
|
|
2. Running linters when files are opened.
|
|
|
|
3. Running linters when files are saved. (When a global flag is set.)
|
|
|
|
4. Populating the |loclist| with warning and errors.
|
|
|
|
5. Setting |signs| with warnings and errors for error markers.
|
|
|
|
6. Using |echo| to show error messages when the cursor moves.
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
2. Supported Languages & Tools *ale-support*
|
|
|
|
|
|
|
|
The following languages and tools are supported.
|
|
|
|
|
2016-10-20 14:26:56 +00:00
|
|
|
* Ansible: 'ansible-lint'
|
2016-10-05 23:22:32 +00:00
|
|
|
* Bash: 'shell' (-n flag), 'shellcheck'
|
|
|
|
* Bourne Shell: 'shell' (-n flag), 'shellcheck'
|
2016-10-31 05:32:39 +00:00
|
|
|
* C: 'cppcheck', 'gcc', 'clang'
|
2016-10-20 11:30:45 +00:00
|
|
|
* C++ (filetype cpp): 'cppcheck', 'gcc'
|
2016-10-30 18:23:32 +00:00
|
|
|
* Chef: 'foodcritic'
|
2016-10-08 15:52:23 +00:00
|
|
|
* CoffeeScript: 'coffee', 'coffelint'
|
2016-12-06 13:26:06 +00:00
|
|
|
* CSS: 'csslint', 'stylelint'
|
2016-10-07 17:33:16 +00:00
|
|
|
* Cython (pyrex filetype): 'cython'
|
2016-10-05 23:22:32 +00:00
|
|
|
* D: 'dmd'
|
2016-10-16 15:44:09 +00:00
|
|
|
* Elixir: 'credo'
|
2016-12-13 09:06:04 +00:00
|
|
|
* Elm: 'elm-make'
|
2016-10-05 23:22:32 +00:00
|
|
|
* Fortran: 'gcc'
|
2016-12-22 12:10:21 +00:00
|
|
|
* Go: 'gofmt -e', 'go vet', 'golint', 'go build'
|
2016-10-19 12:27:03 +00:00
|
|
|
* Haskell: 'ghc', 'hlint'
|
2016-10-08 15:01:03 +00:00
|
|
|
* HTML: 'HTMLHint', 'tidy'
|
2016-11-01 09:00:08 +00:00
|
|
|
* JavaScript: 'eslint', 'jscs', 'jshint', 'flow'
|
2016-10-05 23:22:32 +00:00
|
|
|
* JSON: 'jsonlint'
|
2016-12-04 22:19:06 +00:00
|
|
|
* LaTeX: 'chktex', 'lacheck'
|
2016-10-12 14:44:53 +00:00
|
|
|
* Lua: 'luacheck'
|
2016-10-24 19:40:24 +00:00
|
|
|
* Markdown: 'mdl'
|
2016-10-24 19:32:52 +00:00
|
|
|
* MATLAB: 'mlint'
|
2016-11-23 15:19:36 +00:00
|
|
|
* OCaml: 'merlin' (see |ale-linter-integration-ocaml-merlin|)
|
2016-10-09 15:31:03 +00:00
|
|
|
* Perl: 'perl' (-c flag), 'perlcritic'
|
2016-10-06 10:05:48 +00:00
|
|
|
* PHP: 'php' (-l flag), 'phpcs'
|
2016-10-07 21:16:29 +00:00
|
|
|
* Pug: 'pug-lint'
|
2016-11-25 12:00:07 +00:00
|
|
|
* Puppet: 'puppet', 'puppet-lint'
|
2016-10-30 09:47:06 +00:00
|
|
|
* Python: 'flake8', 'pylint'
|
2016-10-05 23:22:32 +00:00
|
|
|
* Ruby: 'rubocop'
|
2016-12-06 13:26:06 +00:00
|
|
|
* SASS: 'sasslint', 'stylelint'
|
|
|
|
* SCSS: 'sasslint', 'scsslint', 'stylelint'
|
2016-10-07 15:28:44 +00:00
|
|
|
* Scala: 'scalac'
|
2016-12-13 15:28:20 +00:00
|
|
|
* Swift: 'swiftlint'
|
2016-12-22 11:32:20 +00:00
|
|
|
* Tex: 'proselint'
|
|
|
|
* Text: 'proselint'
|
2016-11-10 16:24:17 +00:00
|
|
|
* TypeScript: 'tslint', 'typecheck'
|
2016-10-08 12:38:31 +00:00
|
|
|
* Verilog: 'iverilog', 'verilator'
|
2016-10-05 23:22:32 +00:00
|
|
|
* Vim: 'vint'
|
|
|
|
* YAML: 'yamllint'
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
3. Global Options *ale-options*
|
|
|
|
|
|
|
|
g:ale_linters *g:ale_linters*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Dictionary|
|
2016-10-11 22:11:45 +00:00
|
|
|
Default: `{}`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
The |g:ale_linters| option sets a |Dictionary| mapping a filetype
|
|
|
|
to a |List| of linter programs to be run when checking particular filetypes.
|
2016-10-11 22:11:45 +00:00
|
|
|
Only the filetypes specified in the dictionary will be limited in terms
|
|
|
|
of which linters will be run.
|
|
|
|
|
|
|
|
This |Dictionary| will be merged with a default dictionary containing the
|
|
|
|
following values: >
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-11 22:11:45 +00:00
|
|
|
{
|
|
|
|
\ 'zsh': ['shell'],
|
|
|
|
\ 'csh': ['shell'],
|
|
|
|
\}
|
|
|
|
<
|
2016-10-05 23:22:32 +00:00
|
|
|
This option can be used to enable only a particular set of linters for a
|
|
|
|
file. For example, you can enable only 'eslint' for JavaScript files: >
|
2016-10-11 22:11:45 +00:00
|
|
|
|
|
|
|
let g:ale_linters = {'javascript': ['eslint']}
|
2016-10-05 23:22:32 +00:00
|
|
|
<
|
|
|
|
If you want to disable all linters for a particular filetype, you can pass
|
|
|
|
an empty list of linters as the value: >
|
2016-10-11 22:11:45 +00:00
|
|
|
|
|
|
|
let g:ale_linters = {'javascript': []}
|
2016-10-05 23:22:32 +00:00
|
|
|
<
|
2016-10-11 22:11:45 +00:00
|
|
|
All linters available for a given filetype can be enabled by using the
|
|
|
|
string `'all'`: >
|
|
|
|
|
|
|
|
let g:ale_linters = {'c': 'all'}
|
|
|
|
<
|
|
|
|
|
|
|
|
g:ale_linter_aliases *g:ale_linter_aliases*
|
|
|
|
|
|
|
|
Type: |Dictionary|
|
|
|
|
Default: `{}`
|
|
|
|
|
|
|
|
The |g:ale_linter_aliases| option can be used to set aliases from one
|
|
|
|
filetype to another. A given filetype can be mapped to use the linters
|
|
|
|
run for another given filetype.
|
|
|
|
|
|
|
|
This |Dictionary| will be merged with a default dictionary containing the
|
|
|
|
following values: >
|
|
|
|
|
|
|
|
{
|
|
|
|
\ 'zsh': 'sh',
|
|
|
|
\ 'csh': 'sh',
|
|
|
|
\}
|
|
|
|
<
|
|
|
|
For example, if you wish to map a new filetype `'foobar'` to run the `'php'`
|
|
|
|
linters, you could set the following: >
|
|
|
|
|
|
|
|
let g:ale_linter_aliases = {'foobar': 'php'}
|
|
|
|
<
|
|
|
|
When combined with the |g:ale_linters| option, the original filetype
|
|
|
|
(`'foobar'`) will be used for determining which linters to run,
|
|
|
|
not the aliased type (`'php'`). This allows an aliased type to run a
|
|
|
|
different set of linters from the type it is being mapped to.
|
|
|
|
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
g:ale_lint_on_text_changed *g:ale_lint_on_text_changed*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
By default, ALE will check files with the various supported programs when
|
|
|
|
text is changed by using the |TextChanged| event. If this behaviour is not
|
|
|
|
desired, then this option can be disabled by setting it to 0. The
|
|
|
|
|g:ale_lint_delay| variable will be used to set a |timer_start()| on a
|
|
|
|
delay, and each change to a file will continue to call |timer_stop()| and
|
|
|
|
|timer_start()| repeatedly until the timer ticks by, and the linters will be
|
|
|
|
run. The checking of files will run in the background, so it should not
|
|
|
|
inhibit editing files.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_lint_delay *g:ale_lint_delay*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `200`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This variable controls the milliseconds delay after which the linters will
|
|
|
|
be run after text is changed. This option is only meaningful with the
|
|
|
|
|g:ale_lint_on_text_changed| variable set to `1`.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_lint_on_enter *g:ale_lint_on_enter*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
When this option is set to `1`, the |BufEnter| and |BufRead| events will be
|
|
|
|
used to apply linters when buffers are first opened. If this is not desired,
|
|
|
|
this variable can be set to `0` in your vimrc file to disable this
|
|
|
|
behaviour.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_lint_on_save *g:ale_lint_on_save*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `0`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This option will make ALE run the linters whenever a file is saved when it
|
|
|
|
it set to `1` in your vimrc file. This option can be used in combination
|
|
|
|
with the |g:ale_lint_on_enter| and |g:ale_lint_on_text_changed| options to
|
|
|
|
make ALE only check files after that have been saved, if that is what is
|
|
|
|
desired.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_set_loclist *g:ale_set_loclist*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
When this option is set to `1`, the |loclist| will be populate with any
|
|
|
|
warnings and errors which are found by ALE. This feature can be used to
|
|
|
|
implement jumping between errors through typical use of |lnext| and |lprev|.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_set_signs *g:ale_set_signs*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `has('signs')`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
When this option is set to `1`, the |sign| column will be populated with
|
|
|
|
signs marking where errors and warnings appear in the file. The
|
2016-10-10 11:53:54 +00:00
|
|
|
`ALEErrorSign` and `ALEWarningSign` highlight groups will be used to provide
|
2016-10-09 20:20:21 +00:00
|
|
|
highlighting for the signs. The text used for signs can be customised with
|
|
|
|
the |g:ale_sign_error| and |g:ale_sign_warning| options.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_sign_column_always *g:ale_sign_column_always*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `0`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
By default, the sign gutter will disappear when all warnings and errors have
|
|
|
|
been fixed for a file. When this option is set to `1`, the sign column will
|
|
|
|
remain open. This can be preferable if you don't want the text in your file
|
|
|
|
to move around as you edit a file.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_sign_error *g:ale_sign_error*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
|
|
|
Default: `'>>'`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This string can be changed to change the characters used for the sign gutter
|
|
|
|
for lines which at least one error on them. Lines with both errors and
|
|
|
|
warnings on them will show the error marker, as errors take precedence.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_sign_warning *g:ale_sign_warning*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
|
|
|
Default: `'--'`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This string can be changed to change the characters used for the sign gutter
|
|
|
|
for lines which at least one warning on them.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_sign_offset *g:ale_sign_offset*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1000000`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This variable controls offset from which numeric IDs will be generated for
|
|
|
|
new signs. Signs cannot share the same ID values, so when two Vim plugins
|
|
|
|
set signs at the same time, the IDs have to be configured such that they do
|
|
|
|
not conflict with one another. If the IDs used by ALE are found to conflict
|
|
|
|
with some other plugin, this offset value can be changed, and hopefully both
|
|
|
|
plugins will work together. See |sign-place| for more information on how
|
|
|
|
signs are set.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_echo_cursor *g:ale_echo_cursor*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
When this option is set to `1`, a truncated message will be echoed when a
|
|
|
|
cursor is near a warning or error. ALE will attempt to find the warning or
|
|
|
|
error at a column nearest to the cursor when the cursor is resting on a line
|
|
|
|
which contains a warning or error. This option can be set to `0` to disable
|
|
|
|
this behaviour.
|
2016-10-10 11:53:54 +00:00
|
|
|
The format of the message can be customizable in |g:ale_echo_msg_format|.
|
|
|
|
|
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_echo_msg_format *g:ale_echo_msg_format*
|
2016-10-10 11:53:54 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `%s`
|
|
|
|
|
|
|
|
This variable defines the format of the echoed message. The `%s` is the
|
|
|
|
error message itself, and it can contain the following handlers:
|
|
|
|
- `%linter%` for linter's name
|
|
|
|
- `%severity%` for the type of severity
|
|
|
|
Note |`g:ale_echo_cursor`| should be setted to 1
|
|
|
|
|
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_echo_msg_error_str *g:ale_echo_msg_error_str*
|
2016-10-10 11:53:54 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `Error`
|
|
|
|
|
|
|
|
The string used for error severity in the echoed message.
|
2016-10-10 11:58:55 +00:00
|
|
|
Note |`g:ale_echo_cursor`| should be set to 1
|
2016-10-10 11:53:54 +00:00
|
|
|
Note |`g:ale_echo_msg_format`| should contain the `%severity%` handler
|
|
|
|
|
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_echo_msg_warning_str *g:ale_echo_msg_warning_str*
|
2016-10-10 11:53:54 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `Warning`
|
|
|
|
|
|
|
|
The string used for warning severity in the echoed message.
|
2016-10-10 11:58:55 +00:00
|
|
|
Note |`g:ale_echo_cursor`| should be set to 1
|
2016-10-10 11:53:54 +00:00
|
|
|
Note |`g:ale_echo_msg_format`| should contain the `%severity%` handler
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
g:ale_warn_about_trailing_whitespace *g:ale_warn_about_trailing_whitespace*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
When this option is set to `1`, warnings relating to trailing whitespace on
|
|
|
|
lines will be shown in signs, the loclist, and echo messages, etc. If these
|
|
|
|
errors are found to be too irritating while edits are being made, and you
|
|
|
|
have configured Vim to automatically remove trailing whitespace, then you
|
|
|
|
can disable these warnings for some linters by setting this option to `0`.
|
|
|
|
|
|
|
|
Not all linters may respect this option. If a linter does not, please file a
|
|
|
|
bug report, and it may be possible to add such support.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
|
2016-10-07 16:48:47 +00:00
|
|
|
g:ale_statusline_format *g:ale_statusline_format*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |List|
|
|
|
|
Default: `['%d error(s)', '%d warning(s)', 'OK']`
|
2016-10-07 16:48:47 +00:00
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
This variable defines the format of |`ale#statusline#status()`| output.
|
2016-10-09 20:20:21 +00:00
|
|
|
- The 1st element is for errors
|
|
|
|
- The 2nd element is for warnings
|
|
|
|
- The 3rd element is for when no errors are detected
|
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
g:airline#extensions#ale#enabled *g:airline#extensions#ale#enabled*
|
|
|
|
|
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
Enables or disables the |airline|'s native extension for ale, which displays
|
|
|
|
warnings and errors in the status line, prefixed by
|
|
|
|
|airline#extensions#ale#error_symbol| and
|
|
|
|
|airline#extensions#ale#warning_symbol|.
|
|
|
|
|
2016-10-05 23:22:32 +00:00
|
|
|
===============================================================================
|
2016-10-06 12:42:52 +00:00
|
|
|
4. Linter Specific Options *ale-linter-options*
|
|
|
|
|
|
|
|
Some linters have specific options which can be configured for each of them,
|
|
|
|
for customising their behaviour.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
2016-10-07 15:27:27 +00:00
|
|
|
4.1. eslint *ale-linter-options-eslint*
|
2016-10-06 12:42:52 +00:00
|
|
|
|
|
|
|
g:ale_javascript_eslint_executable *g:ale_javascript_eslint_executable*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
|
|
|
Default: `'eslint'`
|
2016-10-06 12:42:52 +00:00
|
|
|
|
2016-10-23 12:04:41 +00:00
|
|
|
ALE will first discover the eslint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
This variable can be set to change the path to eslint. If you have eslint_d
|
|
|
|
installed, you can set this option to use eslint_d instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of eslint, set
|
|
|
|
|g:ale_javascript_eslint_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_javascript_eslint_use_global *g:ale_javascript_eslint_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
eslint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of eslint, in preference to locally installed versions of
|
|
|
|
eslint in node_modules.
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-11-01 09:00:08 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
4.2. flow *ale-linter-options-flow*
|
|
|
|
|
|
|
|
g:ale_javascript_flow_executable *g:ale_javascript_flow_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'flow'`
|
|
|
|
|
|
|
|
ALE will first discover the flow path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of flow, set
|
|
|
|
|g:ale_javascript_flow_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_javascript_flow_use_global *g:ale_javascript_flow_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
flow first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of flow, in preference to locally installed versions of
|
|
|
|
flow in node_modules.
|
2016-10-06 12:42:52 +00:00
|
|
|
|
2016-10-07 00:03:19 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.3. jshint *ale-linter-options-jshint*
|
2016-10-10 22:48:41 +00:00
|
|
|
|
|
|
|
g:ale_javascript_jshint_executable *g:ale_javascript_jshint_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'jshint'`
|
|
|
|
|
2016-10-23 12:25:50 +00:00
|
|
|
ALE will first discover the jshint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
This variable can be changed to change the path to jshint.
|
|
|
|
|
2016-10-23 12:25:50 +00:00
|
|
|
If you wish to use only a globally installed version of jshint, set
|
|
|
|
|g:ale_javascript_jshint_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_javascript_jshint_use_global *g:ale_javascript_jshint_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
jshint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of jshint, in preference to locally installed versions of
|
|
|
|
jshint in node_modules.
|
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.4. phpcs *ale-linter-options-phpcs*
|
2016-10-07 00:03:19 +00:00
|
|
|
|
|
|
|
g:ale_php_phpcs_standard *g:ale_php_phpcs_standard*
|
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
2016-10-07 00:03:19 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This variable can be set to specify the coding standard used by phpcs. If no
|
|
|
|
coding standard is specified, phpcs will default to checking against the
|
|
|
|
PEAR coding standard, or the standard you have set as the default.
|
|
|
|
|
2016-10-07 00:03:19 +00:00
|
|
|
|
2016-10-07 15:27:27 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.5. html-tidy *ale-linter-options-html-tidy*
|
2016-10-07 15:27:27 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_html_tidy_executable *g:ale_html_tidy_executable*
|
2016-10-07 15:27:27 +00:00
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
2016-10-10 22:48:41 +00:00
|
|
|
Default: `'tidy'`
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
This variable can be changed to change the path to tidy.
|
2016-10-07 15:27:27 +00:00
|
|
|
|
2016-10-08 11:42:36 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_html_tidy_args *g:ale_html_tidy_args*
|
2016-10-08 11:42:36 +00:00
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
2016-10-10 22:48:41 +00:00
|
|
|
Default: `'-q -e -language en'`
|
2016-10-08 11:42:36 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
This variable can be changed to change the arguments provided to the
|
|
|
|
executable.
|
|
|
|
|
|
|
|
ALE will attempt to automatically detect the appropriate file encoding to
|
|
|
|
provide to html-tidy, and fall back to UTF-8 when encoding detection fails.
|
|
|
|
|
|
|
|
The recognized file encodings are as follows: ascii, big5, cp1252 (win1252),
|
|
|
|
cp850 (ibm858), cp932 (shiftjis), iso-2022-jp (iso-2022), latin1, macroman
|
|
|
|
(mac), sjis (shiftjis), utf-16le, utf-16, utf-8
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-08 11:42:36 +00:00
|
|
|
|
2016-10-09 19:45:51 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.6. c-gcc *ale-linter-options-c-gcc*
|
2016-10-09 19:45:51 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_c_gcc_options *g:ale_c_gcc_options*
|
2016-10-09 19:45:51 +00:00
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
2016-10-21 14:02:20 +00:00
|
|
|
Default: `'-std=c11 -Wall'`
|
2016-10-09 19:45:51 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
This variable can be change to modify flags given to gcc.
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-09 19:45:51 +00:00
|
|
|
|
2016-10-09 20:13:33 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.7. cpp-gcc *ale-linter-options-cpp-gcc*
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_cpp_gcc_options *g:ale_cpp_gcc_options*
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
2016-10-21 14:02:20 +00:00
|
|
|
Default: `'-std=c++14 -Wall'`
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
This variable can be changed to modify flags given to gcc.
|
|
|
|
|
2016-10-09 20:13:33 +00:00
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.8. fortran-gcc *ale-linter-options-fortran-gcc*
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_fortran_gcc_options *g:ale_fortran_gcc_options*
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-09 20:23:34 +00:00
|
|
|
Type: |String|
|
2016-10-10 22:48:41 +00:00
|
|
|
Default: `'-Wall'`
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
This variable can be changed to modify flags given to gcc.
|
2016-10-09 20:13:33 +00:00
|
|
|
|
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.9. shell *ale-linter-options-shell*
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_linters_sh_shell_default_shell *g:ale_linters_sh_shell_default_shell*
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
Type: |String|
|
|
|
|
Default: The current shell (`$SHELL`) or `'bash'` if that cannot be read.
|
2016-10-09 20:13:33 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
When ALE runs the linter for shells with the `-n` flag, it will attempt to
|
|
|
|
read the shell from the shebang (`#!`) line from the shell script to
|
|
|
|
determine the shell program to run. When this detection fails, this variable
|
|
|
|
will be used instead.
|
2016-10-09 20:13:33 +00:00
|
|
|
|
|
|
|
|
2016-10-10 18:07:01 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-03 10:17:25 +00:00
|
|
|
4.10. shellcheck *ale-linter-options-shellcheck*
|
2016-10-10 18:07:01 +00:00
|
|
|
|
2016-10-10 22:48:41 +00:00
|
|
|
g:ale_linters_sh_shellckeck_exclusions *g:ale_linters_sh_shellckeck_exclusions*
|
2016-10-10 18:07:01 +00:00
|
|
|
|
|
|
|
Type: |String|
|
2016-10-10 22:48:41 +00:00
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
Set this variable to exclude test(s) for shellcheck (-e/--exclude option).
|
2016-10-10 18:07:01 +00:00
|
|
|
|
|
|
|
|
2016-10-11 12:20:56 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.11. vint *ale-linter-options-vint*
|
2016-10-11 12:20:56 +00:00
|
|
|
|
|
|
|
g:ale_vim_vint_show_style_issues *g:ale_vim_vint_show_style_issues*
|
|
|
|
|
|
|
|
Type: |Number|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
This variable will enable/disable style issues for Vint. When this option
|
|
|
|
is disabled, only warnings and errors which are not purely style issues
|
|
|
|
will be reported.
|
|
|
|
|
|
|
|
|
2016-10-12 14:44:53 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-01 09:00:08 +00:00
|
|
|
4.12. luacheck *ale-linter-options-luacheck*
|
2016-10-12 14:44:53 +00:00
|
|
|
|
|
|
|
g:ale_lua_luacheck_executable *g:ale_lua_luacheck_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'luacheck'`
|
|
|
|
|
|
|
|
This variable can be changed to change the path to luacheck.
|
|
|
|
|
|
|
|
|
2016-10-20 11:30:45 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-03 10:17:25 +00:00
|
|
|
4.13. c-cppcheck *ale-linter-options-c-cppcheck*
|
2016-10-20 11:30:45 +00:00
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_c_cppcheck_options *g:ale_c_cppcheck_options*
|
2016-10-20 11:30:45 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'--enable=style'`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to cppcheck.
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
2016-11-03 10:17:25 +00:00
|
|
|
4.14. cpp-cppcheck *ale-linter-options-cpp-cppcheck*
|
2016-10-20 11:30:45 +00:00
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_cpp_cppcheck_options *g:ale_cpp_cppcheck_options*
|
2016-10-20 11:30:45 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'--enable=style'`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to cppcheck.
|
|
|
|
|
|
|
|
|
2016-10-27 15:31:49 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-03 10:17:25 +00:00
|
|
|
4.15. htmlhint *ale-linter-options-htmlhint*
|
2016-10-27 15:31:49 +00:00
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_html_htmlhint_options *g:ale_html_htmlhint_options*
|
2016-10-27 15:31:49 +00:00
|
|
|
|
|
|
|
Type: |String|
|
2016-10-30 09:21:34 +00:00
|
|
|
Default: `'--format=unix'`
|
2016-10-27 15:31:49 +00:00
|
|
|
|
|
|
|
This variable can be changed to modify flags given to HTMLHint.
|
|
|
|
|
2016-12-22 11:39:01 +00:00
|
|
|
g:ale_html_htmlhint_executable *g:ale_html_htmlhint_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'htmlhint'`
|
|
|
|
|
|
|
|
ALE will first discover the htmlhint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of htmlhint, set
|
|
|
|
|g:ale_html_htmlhint_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_html_htmlhint_use_global *g:ale_html_htmlhint_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
htmlhint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of htmlhint, in preference to locally installed versions of
|
|
|
|
htmlhint in node_modules.
|
2016-10-27 15:31:49 +00:00
|
|
|
|
2016-10-31 05:32:39 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-03 10:17:25 +00:00
|
|
|
4.16. c-clang *ale-linter-options-c-clang*
|
2016-10-31 05:32:39 +00:00
|
|
|
|
2016-11-03 10:17:25 +00:00
|
|
|
g:ale_c_clang_options *g:ale_c_clang_options*
|
2016-10-31 05:32:39 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'-std=c11 -Wall'`
|
|
|
|
|
|
|
|
This variable can be change to modify flags given to clang.
|
|
|
|
|
2016-11-14 17:52:31 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
4.17. python-flake8 *ale-linter-options-python-flake8*
|
|
|
|
|
|
|
|
g:ale_python_flake8_executable *g:ale_python_flake8_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'flake8'`
|
|
|
|
|
|
|
|
This variable can be changed to modify the executable used for flake8.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_python_flake8_args *g:ale_python_flake8_args*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be changed to add command-line arguments to the flake8
|
|
|
|
invocation.
|
|
|
|
|
|
|
|
For example, to dynamically switch between programs targeting Python 2 and
|
|
|
|
Python 3, you may want to set >
|
|
|
|
|
|
|
|
let g:ale_python_flake8_executable = 'python3' " or 'python' for Python 2
|
|
|
|
let g:ale_python_flake8_args = '-m flake8'
|
|
|
|
|
|
|
|
after making sure it's installed for the appropriate Python versions (e.g.
|
|
|
|
`python3 -m pip install --user flake8`).
|
|
|
|
|
2016-12-01 17:28:27 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
4.18. ruby-rubocop *ale-linter-options-ruby-rubocop*
|
|
|
|
|
|
|
|
g:ale_ruby_rubocop_options *g:ale_ruby_rubocop_options*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `''`
|
|
|
|
|
|
|
|
This variable can be change to modify flags given to rubocop.
|
|
|
|
|
2016-12-04 22:19:06 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
4.19. chktex *ale-linter-options-chktex*
|
|
|
|
|
|
|
|
g:ale_tex_chktex_executable *g:ale_tex_chktex_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'chktex'`
|
|
|
|
|
|
|
|
This variable can be changed to change the path to chktex.
|
|
|
|
|
|
|
|
g:ale_tex_chktex_options *g:ale_tex_chktex_options*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'-I'`
|
|
|
|
|
|
|
|
This variable can be changed to modify flags given to chktex.
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
4.20. lacheck *ale-linter-options-lacheck*
|
|
|
|
|
|
|
|
g:ale_lacheck_executable *g:ale_lacheck_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: '`lacheck`'
|
|
|
|
|
|
|
|
This variable can be changed to change the path to lacheck.
|
|
|
|
|
2016-12-22 11:39:01 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
4.21. stylelint *ale-linter-options-stylelint*
|
|
|
|
|
|
|
|
g:ale_css_stylelint_executable *g:ale_css_stylelint_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'stylelint'`
|
|
|
|
|
|
|
|
ALE will first discover the stylelint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of stylelint, set
|
|
|
|
|g:ale_css_stylelint_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_css_stylelint_use_global *g:ale_css_stylelint_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
stylelint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of stylelint, in preference to locally installed versions of
|
|
|
|
stylelint in node_modules.
|
|
|
|
|
2016-12-26 16:35:22 +00:00
|
|
|
g:ale_sass_stylelint_executable *g:ale_sass_stylelint_executable*
|
2016-12-22 11:39:01 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'stylelint'`
|
|
|
|
|
|
|
|
ALE will first discover the stylelint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of stylelint, set
|
2016-12-26 16:35:22 +00:00
|
|
|
|g:ale_sass_stylelint_use_global| to `1`.
|
2016-12-22 11:39:01 +00:00
|
|
|
|
|
|
|
|
2016-12-26 16:35:22 +00:00
|
|
|
g:ale_sass_stylelint_use_global *g:ale_sass_stylelint_use_global*
|
2016-12-22 11:39:01 +00:00
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
stylelint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of stylelint, in preference to locally installed versions of
|
|
|
|
stylelint in node_modules.
|
|
|
|
|
|
|
|
g:ale_scss_stylelint_executable *g:ale_scss_stylelint_executable*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `'stylelint'`
|
|
|
|
|
|
|
|
ALE will first discover the stylelint path in an ancestor node_modules
|
|
|
|
directory. If no such path exists, this variable will be used instead.
|
|
|
|
|
|
|
|
If you wish to use only a globally installed version of stylelint, set
|
|
|
|
|g:ale_scss_stylelint_use_global| to `1`.
|
|
|
|
|
|
|
|
|
|
|
|
g:ale_scss_stylelint_use_global *g:ale_scss_stylelint_use_global*
|
|
|
|
|
|
|
|
Type: |String|
|
|
|
|
Default: `0`
|
|
|
|
|
|
|
|
This variable controls whether or not ALE will search for a local path for
|
|
|
|
stylelint first. If this variable is set to `1`, then ALE will always use the
|
|
|
|
global version of stylelint, in preference to locally installed versions of
|
|
|
|
stylelint in node_modules.
|
|
|
|
|
2016-11-23 15:19:36 +00:00
|
|
|
===============================================================================
|
|
|
|
5. Linter Integration Notes *ale-linter-integration*
|
|
|
|
|
|
|
|
Some linters may have requirements for some other plugins being installed.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
5.1. ocaml-merlin *ale-integration-ocaml-merlin*
|
|
|
|
|
|
|
|
To use merlin linter for OCaml source code you need to make sure Merlin for
|
|
|
|
Vim is correctly configured. See the corresponding Merlin wiki page for
|
|
|
|
detailed instructions
|
|
|
|
(https://github.com/the-lambda-church/merlin/wiki/vim-from-scratch).
|
2016-10-31 05:32:39 +00:00
|
|
|
|
2016-10-06 12:42:52 +00:00
|
|
|
===============================================================================
|
2016-11-23 15:19:36 +00:00
|
|
|
6. Commands/Keybinds *ale-commands*
|
2016-10-24 21:09:41 +00:00
|
|
|
|
|
|
|
ALEPrevious *ALEPrevious*
|
|
|
|
ALEPreviousWrap *ALEPreviousWrap*
|
|
|
|
ALENext *ALENext*
|
|
|
|
ALENextWrap *ALENextWrap*
|
|
|
|
*ale-navigation-commands*
|
|
|
|
|
|
|
|
Move between warnings or errors in a buffer.
|
|
|
|
|
|
|
|
`ALEPrevious` and `ALENext` will stop at the top and bottom of a file, while
|
|
|
|
`ALEPreviousWrap` and `ALENextWrap` will wrap around the file to find
|
|
|
|
the last or first warning or error in the file, respectively.
|
|
|
|
|
|
|
|
The following |<Plug>| mappings are defined for the commands: >
|
|
|
|
<Plug>(ale_previous) - ALEPrevious
|
|
|
|
<Plug>(ale_previous_wrap) - ALEPreviousWrap
|
|
|
|
<Plug>(ale_next) - ALENext
|
|
|
|
<Plug>(ale_next_wrap) - ALENextWrap
|
|
|
|
<
|
|
|
|
For example, these commands could be bound to the keys Ctrl + j
|
|
|
|
and Ctrl + k: >
|
|
|
|
|
|
|
|
" Map movement through errors without wrapping.
|
|
|
|
nmap <silent> <C-k> <Plug>(ale_previous)
|
|
|
|
nmap <silent> <C-j> <Plug>(ale_next)
|
|
|
|
" OR map keys to use wrapping.
|
|
|
|
nmap <silent> <C-k> <Plug>(ale_previous_wrap)
|
|
|
|
nmap <silent> <C-j> <Plug>(ale_next_wrap)
|
|
|
|
<
|
|
|
|
|
|
|
|
===============================================================================
|
2016-11-23 15:19:36 +00:00
|
|
|
7. API *ale-api*
|
2016-10-05 23:22:32 +00:00
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
ale#Queue(delay) *ale#Queue()*
|
2016-10-05 23:22:32 +00:00
|
|
|
Run linters for the current buffer, based on the filetype of the buffer,
|
|
|
|
with a given `delay`. A `delay` of `0` will run the linters immediately.
|
|
|
|
The linters will always be run in the background. Calling this function
|
|
|
|
again from the same buffer
|
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-24 19:21:32 +00:00
|
|
|
ale#engine#GetLoclist(buffer) *ale#engine#GetLoclist()*
|
|
|
|
|
|
|
|
Given a buffer number, this function will rerurn the list of warnings and
|
|
|
|
errors reported by ALE for a given buffer in the format accepted by
|
|
|
|
|setqflist()|.
|
|
|
|
|
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
ale#linter#Define(filetype, linter) *ale#linter#Define()*
|
2016-10-05 23:22:32 +00:00
|
|
|
Given a |String| for a filetype and a |Dictionary| Describing a linter
|
|
|
|
configuration, add a linter for the given filetype. The dictionaries each
|
|
|
|
offer the following options:
|
|
|
|
|
|
|
|
`name` The name of the linter. These names will be used by
|
|
|
|
|g:ale_linters| option for enabling/disabling
|
|
|
|
particular linters.
|
|
|
|
|
|
|
|
This argument is required.
|
|
|
|
|
|
|
|
`callback` A |String| or |Funcref| for a callback function
|
|
|
|
accepting two arguments (buffer, lines), for a
|
|
|
|
buffer number the output is for, and the lines of
|
|
|
|
output from a linter.
|
|
|
|
|
|
|
|
This callback function should return a |List| of
|
|
|
|
|Dictionary| objects in the format accepted by
|
|
|
|
|setqflist()|. The |List| will be sorted by line and
|
|
|
|
then column order so it can be searched with a binary
|
|
|
|
search by in future before being passed on to the
|
|
|
|
|loclist|, etc.
|
|
|
|
|
|
|
|
This argument is required.
|
|
|
|
|
|
|
|
`executable` A |String| naming the executable itself which
|
|
|
|
will be run. This value will be used to check if the
|
|
|
|
program requested is installed or not.
|
|
|
|
|
|
|
|
Either this or the `executable_callback` argument
|
|
|
|
must be provided.
|
|
|
|
|
|
|
|
`executable_callback ` A |String| or |Funcref| for a callback function
|
|
|
|
accepting a buffer number. A |String| should be
|
|
|
|
returned for the executable to check. This can be
|
|
|
|
used in place of `executable` when more complicated
|
|
|
|
processing is needed.
|
|
|
|
|
|
|
|
`command` A |String| for an executable to run asynchronously.
|
|
|
|
This command will be fed the lines from the buffer to
|
|
|
|
check, and will produce the lines of output given to
|
|
|
|
the `callback`.
|
|
|
|
|
|
|
|
Either this or the `command_callback` argument must
|
|
|
|
be provided.
|
|
|
|
|
|
|
|
`command_callback` A |String| or |Funcref| for a callback function
|
|
|
|
accepting a buffer number. A |String| should be
|
|
|
|
returned for a command to run. This can be used in
|
|
|
|
place of `command` when more complicated processing
|
|
|
|
is needed.
|
|
|
|
|
|
|
|
`output_stream` A |String| for the output stream the lines of output
|
|
|
|
should be read from for the command which is run. The
|
2016-10-07 16:08:11 +00:00
|
|
|
accepted values are `'stdout'`, `'stderr'`, and
|
|
|
|
`'both'`. This argument defaults to `'stdout'`. This
|
|
|
|
argument can be set for linter programs which output
|
|
|
|
their errors and warnings to the stderr stream
|
|
|
|
instead of stdout. The option `'both'` will read
|
|
|
|
from both stder and stdout at the same time.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
Some programs for checking for errors are not capable of receiving input
|
|
|
|
from stdin, as is required by ALE. To remedy this, a wrapper script is
|
|
|
|
provided named in the variable |g:ale#util#stdin_wrapper|. This variable
|
|
|
|
can be called with the regular arguments for any command to forward data
|
|
|
|
from stdin to the program, by way of creating a temporary file. The first
|
|
|
|
argument to the stdin wrapper must be a file extension to save the temporary
|
|
|
|
file with, and the following arguments are the command as normal.
|
|
|
|
For example: >
|
|
|
|
'command': g:ale#util#stdin_wrapper . ' .hs ghc -fno-code -v0',
|
|
|
|
<
|
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
ale#linter#Get(filetype) *ale#linter#Get()*
|
2016-10-05 23:22:32 +00:00
|
|
|
Return all of linters configured for a given filetype as a |List| of
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|Dictionary| values in the format specified by |ale#linter#Define()|.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-22 13:29:30 +00:00
|
|
|
Filetypes may be dot-seperated to invoke linters for multiple filetypes:
|
|
|
|
for instance, the filetype `javascript.jsx` will return linters for both the
|
|
|
|
`javascript` and `jsx` filetype.
|
|
|
|
|
|
|
|
Aliases may be defined in as described in |g:ale_linter_aliases|. Aliases
|
|
|
|
are applied after dot-seperated filetypes are broken up into their
|
|
|
|
components.
|
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
ale#statusline#Status() *ale#statusline#Status()*
|
2016-10-07 16:48:47 +00:00
|
|
|
Return a formatted string that can be added to the statusline.
|
2016-10-09 20:13:33 +00:00
|
|
|
The output's format is defined in |`g:ale_statusline_format`|.
|
2016-10-07 16:48:47 +00:00
|
|
|
To enable it, the following should be present in your |statusline| settings: >
|
2016-10-13 13:01:48 +00:00
|
|
|
%{ale#statusline#Status()}
|
2016-10-07 16:48:47 +00:00
|
|
|
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-05 23:22:32 +00:00
|
|
|
g:ale#util#stdin_wrapper *g:ale#util#stdin_wrapper*
|
|
|
|
This variable names a wrapper script for sending stdin input to programs
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
which cannot accept input via stdin. See |ale#linter#Define()| for more.
|
2016-10-05 23:22:32 +00:00
|
|
|
|
2016-10-11 22:11:45 +00:00
|
|
|
|
2016-10-13 13:01:48 +00:00
|
|
|
ALELint *ALELint*
|
|
|
|
This |User| autocommand is triggered by ALE every time it completes a lint
|
|
|
|
operation. It can be used to update statuslines, send notifications, or
|
|
|
|
complete any other operation that needs to be done after a lint run.
|
|
|
|
It can be used simply:
|
|
|
|
autocmd User ALELint echom "ALE run!"
|
|
|
|
|
|
|
|
|
2016-10-11 20:55:26 +00:00
|
|
|
===============================================================================
|
2016-11-23 15:19:36 +00:00
|
|
|
8. Special Thanks *ale-special-thanks*
|
2016-10-11 20:55:26 +00:00
|
|
|
|
|
|
|
Special thanks to Mark Grealish (https://www.bhalash.com/) for providing ALE's
|
|
|
|
snazzy looking ale glass logo. Cheers, Mark!
|
2016-10-09 20:20:21 +00:00
|
|
|
|
2016-10-05 23:22:32 +00:00
|
|
|
===============================================================================
|
2016-11-23 15:19:36 +00:00
|
|
|
9. Contact *ale-contact*
|
2016-10-05 23:22:32 +00:00
|
|
|
|
|
|
|
If you like this plugin, and wish to get in touch, check out the GitHub
|
|
|
|
page for issues and more at https://github.com/w0rp/ale
|
|
|
|
|
|
|
|
If you wish to contact the author of this plugin directly, please feel
|
|
|
|
free to send an email to devw0rp@gmail.com.
|
|
|
|
|
|
|
|
|
|
|
|
Please drink responsibly, or not at all, which is ironically the preference
|
|
|
|
of w0rp, who is teetotal.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|