diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-07-03 08:31:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 08:31:01 +0100 |
commit | 73d3030cf1a31c9084595561fba7e94c6f61c139 (patch) | |
tree | c20aafa93dc115e5d3b21174d22b178512ccdeaf /doc | |
parent | 49879461757fffade3b62ea4c94e8e4d366a2375 (diff) | |
parent | 20ed48352fd153669dc6c3d17da9c3e5f8773299 (diff) | |
download | ale-73d3030cf1a31c9084595561fba7e94c6f61c139.zip |
Merge pull request #1691 from dsifford/dsifford-python-pyre
add pyre lsp linter to python linters
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-python.txt | 24 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
2 files changed, 26 insertions, 1 deletions
diff --git a/doc/ale-python.txt b/doc/ale-python.txt index b24b531d..de706896 100644 --- a/doc/ale-python.txt +++ b/doc/ale-python.txt @@ -364,6 +364,30 @@ g:ale_python_pyls_use_global *g:ale_python_pyls_use_global* =============================================================================== +pyre *ale-python-pyre* + +`pyre` will be run from a detected project root, per |ale-python-root|. + + +g:ale_python_pyre_executable *g:ale_python_pyre_executable* + *b:ale_python_pyre_executable* + Type: |String| + Default: `'pyre'` + + See |ale-integrations-local-executables| + + Set this to `'pipenv'` to invoke `'pipenv` `run` `pyre'`. + + +g:ale_python_pyre_use_global *g:ale_python_pyre_use_global* + *b:ale_python_pyre_use_global* + Type: |Number| + Default: `get(g:, 'ale_use_global_executables', 0)` + + See |ale-integrations-local-executables| + + +=============================================================================== yapf *ale-python-yapf* g:ale_python_yapf_executable *g:ale_python_yapf_executable* diff --git a/doc/ale.txt b/doc/ale.txt index 4a8fdd9a..232d7630 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -199,6 +199,7 @@ CONTENTS *ale-contents* pyflakes............................|ale-python-pyflakes| pylint..............................|ale-python-pylint| pyls................................|ale-python-pyls| + pyre................................|ale-python-pyre| yapf................................|ale-python-yapf| qml...................................|ale-qml-options| qmlfmt..............................|ale-qml-qmlfmt| @@ -390,7 +391,7 @@ Notes: * proto: `protoc-gen-lint` * Pug: `pug-lint` * Puppet: `puppet`, `puppet-lint` -* Python: `autopep8`, `black`, `flake8`, `isort`, `mypy`, `prospector`, `pycodestyle`, `pyls`, `pylint`!!, `yapf` +* Python: `autopep8`, `black`, `flake8`, `isort`, `mypy`, `prospector`, `pycodestyle`, `pyls`, `pyre`, `pylint`!!, `yapf` * QML: `qmlfmt`, `qmllint` * R: `lintr` * ReasonML: `merlin`, `ols`, `refmt` |