You've already forked dotfiles
23 lines
561 B
Lua
23 lines
561 B
Lua
return {
|
|
settings = {
|
|
pylsp = {
|
|
plugins = {
|
|
pycodestyle = {
|
|
enabled = false,
|
|
ignore = {
|
|
'E501'
|
|
},
|
|
maxLineLength = 120,
|
|
},
|
|
pylint = {
|
|
enabled = true,
|
|
args = {
|
|
'--disable=line-too-long',
|
|
'--disable=missing-function-docstring'
|
|
},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|