mirror of
https://github.com/dense-analysis/ale.git
synced 2026-07-30 03:42:52 +08:00
* Added missing supported files of dprint Added missing supported files of dprint. Related to https://github.com/dense-analysis/ale/pull/4320. * Add new files Add new files. * Tests work Fixed identifiers. Fixed sorting. * Enable formatting of SQL Enable formatting of SQL.
96 lines
3.5 KiB
Plaintext
96 lines
3.5 KiB
Plaintext
===============================================================================
|
|
ALE Jinja Integration *ale-jinja-options*
|
|
|
|
|
|
|
|
===============================================================================
|
|
djlint *ale-jinja-djlint*
|
|
|
|
See |ale-html-djlint|
|
|
|
|
|
|
===============================================================================
|
|
dprint *ale-jinja-dprint*
|
|
|
|
See |ale-dprint-options| and https://dprint.dev/plugins/markup_fmt/.
|
|
|
|
|
|
===============================================================================
|
|
j2lint *ale-jinja-j2lint*
|
|
|
|
*ale-options.jinja_j2lint_executable*
|
|
*g:ale_jinja_j2lint_executable*
|
|
*b:ale_jinja_j2lint_executable*
|
|
jinja_j2lint_executable
|
|
g:ale_jinja_j2lint_executable
|
|
Type: |String|
|
|
Default: `'j2lint'`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
Set this to `'pipenv'` to invoke `'pipenv` `run` `j2lint'`.
|
|
Set this to `'poetry'` to invoke `'poetry` `run` `j2lint'`.
|
|
Set this to `'uv'` to invoke `'uv` `run` `j2lint'`.
|
|
|
|
*ale-options.jinja_j2lint_options*
|
|
*g:ale_jinja_j2lint_options*
|
|
*b:ale_jinja_j2lint_options*
|
|
|
|
jinja_j2lint_options
|
|
g:ale_jinja_j2lint_options
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be changed to add command-line arguments to the
|
|
j2lint invocation.
|
|
|
|
*ale-options.jinja_j2lint_use_global*
|
|
*g:ale_jinja_j2lint_use_global*
|
|
*b:ale_jinja_j2lint_use_global*
|
|
|
|
jinja_j2lint_use_global
|
|
g:ale_jinja_j2lint_use_global
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
*ale-options.jinja_j2lint_auto_pipenv*
|
|
*g:ale_jinja_j2lint_auto_pipenv*
|
|
*b:ale_jinja_j2lint_auto_pipenv*
|
|
|
|
jinja_j2lint_auto_pipenv
|
|
g:ale_jinja_j2lint_auto_pipenv
|
|
Type: |Number|
|
|
Default: `0`
|
|
|
|
Detect whether the file is inside a pipenv, and set the executable to `pipenv`
|
|
if true. This is overridden by a manually-set executable.
|
|
|
|
*ale-options.jinja_j2lint_auto_poetry*
|
|
*g:ale_jinja_j2lint_auto_poetry*
|
|
*b:ale_jinja_j2lint_auto_poetry*
|
|
|
|
jinja_j2lint_auto_poetry
|
|
g:ale_jinja_j2lint_auto_poetry
|
|
Type: |Number|
|
|
Default: `0`
|
|
|
|
Detect whether the file is inside a poetry, and set the executable to `poetry`
|
|
if true. This is overridden by a manually-set executable.
|
|
|
|
*ale-options.jinja_j2lint_auto_uv*
|
|
*g:ale_jinja_j2lint_auto_uv*
|
|
*b:ale_jinja_j2lint_auto_uv*
|
|
|
|
jinja_j2lint_auto_uv
|
|
g:ale_jinja_j2lint_auto_uv
|
|
Type: |Number|
|
|
Default: `0`
|
|
|
|
Set the executable to `uv` if true. This is overridden by a manually-set
|
|
executable.
|
|
|
|
===============================================================================
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|