1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---@brief
---
--- https://github.com/mtshiba/pylyzer
---
--- `pylyzer`, a fast static code analyzer & language server for Python.
return {
cmd = { 'pylyzer', '--server' },
filetypes = { 'python' },
root_markers = {
'setup.py',
'tox.ini',
'requirements.txt',
'Pipfile',
'pyproject.toml',
'.git',
},
settings = {
python = {
diagnostics = true,
inlayHints = true,
smartCompletion = true,
checkOnType = false,
},
},
}
|