mirror of https://github.com/dense-analysis/ale
add pyre lsp linter to python linters
This commit is contained in:
parent
9d98e6db0c
commit
ea6d720fec
|
@ -158,7 +158,7 @@ formatting.
|
||||||
| proto | [protoc-gen-lint](https://github.com/ckaznocha/protoc-gen-lint) |
|
| proto | [protoc-gen-lint](https://github.com/ckaznocha/protoc-gen-lint) |
|
||||||
| Pug | [pug-lint](https://github.com/pugjs/pug-lint) |
|
| Pug | [pug-lint](https://github.com/pugjs/pug-lint) |
|
||||||
| Puppet | [puppet](https://puppet.com), [puppet-lint](https://puppet-lint.com) |
|
| Puppet | [puppet](https://puppet.com), [puppet-lint](https://puppet-lint.com) |
|
||||||
| Python | [autopep8](https://github.com/hhatto/autopep8), [black](https://github.com/ambv/black), [flake8](http://flake8.pycqa.org/en/latest/), [isort](https://github.com/timothycrosley/isort), [mypy](http://mypy-lang.org/), [prospector](http://github.com/landscapeio/prospector), [pycodestyle](https://github.com/PyCQA/pycodestyle), [pyls](https://github.com/palantir/python-language-server), [pylint](https://www.pylint.org/) !!, [yapf](https://github.com/google/yapf) |
|
| Python | [autopep8](https://github.com/hhatto/autopep8), [black](https://github.com/ambv/black), [flake8](http://flake8.pycqa.org/en/latest/), [isort](https://github.com/timothycrosley/isort), [mypy](http://mypy-lang.org/), [prospector](http://github.com/landscapeio/prospector), [pycodestyle](https://github.com/PyCQA/pycodestyle), [pyls](https://github.com/palantir/python-language-server), [pyre](https://github.com/facebook/pyre-check), [pylint](https://www.pylint.org/) !!, [yapf](https://github.com/google/yapf) |
|
||||||
| QML | [qmlfmt](https://github.com/jesperhh/qmlfmt), [qmllint](https://github.com/qt/qtdeclarative/tree/5.11/tools/qmllint) |
|
| QML | [qmlfmt](https://github.com/jesperhh/qmlfmt), [qmllint](https://github.com/qt/qtdeclarative/tree/5.11/tools/qmllint) |
|
||||||
| R | [lintr](https://github.com/jimhester/lintr) |
|
| R | [lintr](https://github.com/jimhester/lintr) |
|
||||||
| ReasonML | [merlin](https://github.com/the-lambda-church/merlin) see `:help ale-reasonml-ols` for configuration instructions, [ols](https://github.com/freebroccolo/ocaml-language-server), [refmt](https://github.com/reasonml/reason-cli) |
|
| ReasonML | [merlin](https://github.com/the-lambda-church/merlin) see `:help ale-reasonml-ols` for configuration instructions, [ols](https://github.com/freebroccolo/ocaml-language-server), [refmt](https://github.com/reasonml/reason-cli) |
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
" Author: dsifford <dereksifford@gmail.com>
|
||||||
|
" Description: A performant type-checker supporting LSP for Python 3 created by Facebook
|
||||||
|
|
||||||
|
call ale#Set('python_pyre_executable', 'pyre')
|
||||||
|
call ale#Set('python_pyre_use_global', get(g:, 'ale_use_global_executables', 0))
|
||||||
|
|
||||||
|
function! ale_linters#python#pyre#GetExecutable(buffer) abort
|
||||||
|
return ale#python#FindExecutable(a:buffer, 'python_pyre', ['pyre'])
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! ale_linters#python#pyre#GetCommand(buffer) abort
|
||||||
|
let l:executable = ale_linters#python#pyre#GetExecutable(a:buffer)
|
||||||
|
|
||||||
|
let l:exec_args = l:executable =~? 'pipenv$'
|
||||||
|
\ ? ' run pyre persistent'
|
||||||
|
\ : ' persistent'
|
||||||
|
|
||||||
|
return ale#Escape(l:executable) . l:exec_args
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
call ale#linter#Define('python', {
|
||||||
|
\ 'name': 'pyre',
|
||||||
|
\ 'lsp': 'stdio',
|
||||||
|
\ 'executable_callback': 'ale_linters#python#pyre#GetExecutable',
|
||||||
|
\ 'command_callback': 'ale_linters#python#pyre#GetCommand',
|
||||||
|
\ 'language': 'python',
|
||||||
|
\ 'project_root_callback': 'ale#python#FindProjectRoot',
|
||||||
|
\ 'completion_filter': 'ale#completion#python#CompletionItemFilter',
|
||||||
|
\})
|
|
@ -363,6 +363,30 @@ g:ale_python_pyls_use_global *g:ale_python_pyls_use_global*
|
||||||
See |ale-integrations-local-executables|
|
See |ale-integrations-local-executables|
|
||||||
|
|
||||||
|
|
||||||
|
===============================================================================
|
||||||
|
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*
|
yapf *ale-python-yapf*
|
||||||
|
|
||||||
|
|
|
@ -199,6 +199,7 @@ CONTENTS *ale-contents*
|
||||||
pyflakes............................|ale-python-pyflakes|
|
pyflakes............................|ale-python-pyflakes|
|
||||||
pylint..............................|ale-python-pylint|
|
pylint..............................|ale-python-pylint|
|
||||||
pyls................................|ale-python-pyls|
|
pyls................................|ale-python-pyls|
|
||||||
|
pyre................................|ale-python-pyre|
|
||||||
yapf................................|ale-python-yapf|
|
yapf................................|ale-python-yapf|
|
||||||
qml...................................|ale-qml-options|
|
qml...................................|ale-qml-options|
|
||||||
qmlfmt..............................|ale-qml-qmlfmt|
|
qmlfmt..............................|ale-qml-qmlfmt|
|
||||||
|
|
Loading…
Reference in New Issue