Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
368 lines
13 KiB
Plaintext
368 lines
13 KiB
Plaintext
===============================================================================
|
|
ALE PHP Integration *ale-php-options*
|
|
|
|
|
|
===============================================================================
|
|
cspell *ale-php-cspell*
|
|
|
|
See |ale-cspell-options|
|
|
|
|
|
|
===============================================================================
|
|
langserver *ale-php-langserver*
|
|
|
|
g:ale_php_langserver_executable *g:ale_php_langserver_executable*
|
|
*b:ale_php_langserver_executable*
|
|
Type: |String|
|
|
Default: `'php-language-server.php'`
|
|
|
|
The variable can be set to configure the executable that will be used for
|
|
running the PHP language server. `vendor` directory executables will be
|
|
preferred instead of this setting if |g:ale_php_langserver_use_global| is `0`.
|
|
|
|
See: |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_langserver_use_global *g:ale_php_langserver_use_global*
|
|
*b:ale_php_langserver_use_global*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
This variable can be set to `1` to force the language server to be run with
|
|
the executable set for |g:ale_php_langserver_executable|.
|
|
|
|
See: |ale-integrations-local-executables|
|
|
|
|
|
|
===============================================================================
|
|
phan *ale-php-phan*
|
|
|
|
WARNING: please use the phan_client linter if you have an configuration file
|
|
for your project because the phan will look into your entirely project and
|
|
ale will display in the current buffer warnings that may belong to other file.
|
|
|
|
g:ale_php_phan_minimum_severity *g:ale_php_phan_minimum_severity*
|
|
*b:ale_php_phan_minimum_severity*
|
|
Type: |Number|
|
|
Default: `0`
|
|
|
|
This variable defines the minimum severity level.
|
|
|
|
|
|
g:ale_php_phan_executable *g:ale_php_phan_executable*
|
|
*b:ale_php_phan_executable*
|
|
Type: |String|
|
|
Default: `'phan'`
|
|
|
|
This variable sets executable used for phan or phan_client.
|
|
|
|
|
|
g:ale_php_phan_use_client *g:ale_php_phan_use_client*
|
|
*b:ale_php_phan_use_client*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_php_phan_use_client', 0)`
|
|
|
|
This variable can be set to 1 to use the phan_client with phan daemon mode
|
|
instead of the phan standalone.
|
|
|
|
|
|
===============================================================================
|
|
phpcbf *ale-php-phpcbf*
|
|
|
|
g:ale_php_phpcbf_executable *g:ale_php_phpcbf_executable*
|
|
*b:ale_php_phpcbf_executable*
|
|
Type: |String|
|
|
Default: `'phpcbf'`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_phpcbf_standard *g:ale_php_phpcbf_standard*
|
|
*b:ale_php_phpcbf_standard*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to specify the coding standard used by phpcbf. If no
|
|
coding standard is specified, phpcbf will default to fixing against the
|
|
PEAR coding standard, or the standard you have set as the default.
|
|
|
|
|
|
g:ale_php_phpcbf_use_global *g:ale_php_phpcbf_use_global*
|
|
*b:ale_php_phpcbf_use_global*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_phpcbf_options *g:ale_php_phpcbf_options*
|
|
*b:ale_php_phpcbf_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to php-cbf
|
|
|
|
|
|
===============================================================================
|
|
phpcs *ale-php-phpcs*
|
|
|
|
g:ale_php_phpcs_executable *g:ale_php_phpcs_executable*
|
|
*b:ale_php_phpcs_executable*
|
|
Type: |String|
|
|
Default: `'phpcs'`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_phpcs_standard *g:ale_php_phpcs_standard*
|
|
*b:ale_php_phpcs_standard*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
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.
|
|
|
|
|
|
g:ale_php_phpcs_use_global *g:ale_php_phpcs_use_global*
|
|
*b:ale_php_phpcs_use_global*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_phpcs_options *g:ale_php_phpcs_options*
|
|
*b:ale_php_phpcs_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to php-cs
|
|
|
|
|
|
===============================================================================
|
|
phpmd *ale-php-phpmd*
|
|
|
|
g:ale_php_phpmd_executable *g:ale_php_phpmd_executable*
|
|
*b:ale_php_phpmd_executable*
|
|
Type: |String|
|
|
Default: `'phpmd'`
|
|
|
|
This variable sets executable used for phpmd.
|
|
|
|
|
|
g:ale_php_phpmd_ruleset *g:ale_php_phpmd_ruleset*
|
|
*b:ale_php_phpmd_ruleset*
|
|
Type: |String|
|
|
Default: `'cleancode,codesize,controversial,design,naming,unusedcode'`
|
|
|
|
This variable controls the ruleset used by phpmd. Default is to use all of
|
|
the available phpmd rulesets
|
|
|
|
|
|
===============================================================================
|
|
phpstan *ale-php-phpstan*
|
|
|
|
g:ale_php_phpstan_executable *g:ale_php_phpstan_executable*
|
|
*b:ale_php_phpstan_executable*
|
|
Type: |String|
|
|
Default: `'phpstan'`
|
|
|
|
This variable sets executable used for phpstan.
|
|
|
|
|
|
g:ale_php_phpstan_level *g:ale_php_phpstan_level*
|
|
*b:ale_php_phpstan_level*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable controls the rule levels. 0 is the loosest and 7 is the
|
|
strictest. If this option isn't set, the rule level will be controlled by
|
|
the configuration file. If no configuration file can be detected, `'7'` will
|
|
be used instead.
|
|
|
|
|
|
g:ale_php_phpstan_configuration *g:ale_php_phpstan_configuration*
|
|
*b:ale_php_phpstan_configuration*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable sets path to phpstan configuration file.
|
|
|
|
|
|
g:ale_php_phpstan_autoload *g:ale_php_phpstan_autoload*
|
|
*b:ale_php_phpstan_autoload*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable sets path to phpstan autoload file.
|
|
|
|
|
|
g:ale_php_phpstan_memory_limit *g:ale_php_phpstan_memory-limit*
|
|
*b:ale_php_phpstan_memory-limit*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable sets the memory limit for phpstan analysis. This is a string
|
|
in the same format as `php.ini` accepts, e.g. `128M`, `1G`.
|
|
|
|
|
|
===============================================================================
|
|
psalm *ale-php-psalm*
|
|
|
|
g:ale_php_psalm_executable *g:ale_php_psalm_executable*
|
|
*b:ale_php_psalm_executable*
|
|
Type: |String|
|
|
Default: `'psalm'`
|
|
|
|
This variable sets the executable used for psalm.
|
|
|
|
|
|
g:ale_php_psalm_options *g:ale_php_psalm_options*
|
|
*b:ale_php_psalm_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to psalm.
|
|
|
|
|
|
g:ale_php_psalm_use_global *g:ale_php_psalm_use_global*
|
|
*b:ale_php_psalm_use_global*
|
|
Type: |Boolean|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
===============================================================================
|
|
php-cs-fixer *ale-php-php-cs-fixer*
|
|
|
|
g:ale_php_cs_fixer_executable *g:ale_php_cs_fixer_executable*
|
|
*b:ale_php_cs_fixer_executable*
|
|
Type: |String|
|
|
Default: `'php-cs-fixer'`
|
|
|
|
This variable sets executable used for php-cs-fixer.
|
|
|
|
|
|
g:ale_php_cs_fixer_options *g:ale_php_cs_fixer_options*
|
|
*b:ale_php_cs_fixer_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to php-cs-fixer.
|
|
|
|
|
|
g:ale_php_cs_fixer_use_global *g:ale_php_cs_fixer_use_global*
|
|
*b:ale_php_cs_fixer_use_global*
|
|
Type: |Boolean|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
===============================================================================
|
|
php *ale-php-php*
|
|
|
|
g:ale_php_php_executable *g:ale_php_php_executable*
|
|
*b:ale_php_php_executable*
|
|
Type: |String|
|
|
Default: `'php'`
|
|
|
|
This variable sets the executable used for php.
|
|
|
|
|
|
===============================================================================
|
|
pint *ale-php-pint*
|
|
|
|
g:ale_php_pint_executable *g:ale_php_pint_executable*
|
|
*b:ale_php_pint_executable*
|
|
Type: |String|
|
|
Default: `'pint'`
|
|
|
|
This variable sets the executable used for pint.
|
|
|
|
|
|
g:ale_php_pint_options *g:ale_php_pint_options*
|
|
*b:ale_php_pint_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to pint.
|
|
|
|
|
|
g:ale_php_pint_use_global *g:ale_php_pint_use_global*
|
|
*b:ale_php_pint_use_global*
|
|
Type: |Boolean|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
===============================================================================
|
|
tlint *ale-php-tlint*
|
|
|
|
g:ale_php_tlint_executable *g:ale_php_tlint_executable*
|
|
*b:ale_php_tlint_executable*
|
|
Type: |String|
|
|
Default: `'tlint'`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_tlint_use_global *g:ale_php_tlint_use_global*
|
|
*b:ale_php_tlint_use_global*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
See |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_tlint_options *g:ale_php_tlint_options*
|
|
*b:ale_php_tlint_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be set to pass additional options to tlint
|
|
|
|
|
|
===============================================================================
|
|
intelephense *ale-php-intelephense*
|
|
|
|
g:ale_php_intelephense_executable *g:ale_php_intelephense_executable*
|
|
*b:ale_php_intelephense_executable*
|
|
Type: |String|
|
|
Default: `'intelephense'`
|
|
|
|
The variable can be set to configure the executable that will be used for
|
|
running the intelephense language server. `node_modules` directory
|
|
executable will be preferred instead of this setting if
|
|
|g:ale_php_intelephense_use_global| is `0`.
|
|
|
|
See: |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_intelephense_use_global *g:ale_php_intelephense_use_global*
|
|
*b:ale_php_intelephense_use_global*
|
|
Type: |Number|
|
|
Default: `get(g:, 'ale_use_global_executables', 0)`
|
|
|
|
This variable can be set to `1` to force the language server to be run with
|
|
the executable set for |g:ale_php_intelephense_executable|.
|
|
|
|
See: |ale-integrations-local-executables|
|
|
|
|
|
|
g:ale_php_intelephense_config *g:ale_php_intelephense_config*
|
|
*b:ale_php_intelephense_config*
|
|
Type: |Dictionary|
|
|
Default: `{}`
|
|
|
|
The initialization options config specified by Intelephense. Refer to the
|
|
installation docs provided by intelephense (github.com/bmewburn/intelephense
|
|
-docs).
|
|
|
|
|
|
===============================================================================
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|