Skip to content

Instantly share code, notes, and snippets.

@hemebond
Created August 4, 2020 13:02
Show Gist options
  • Save hemebond/96b4dc04102234e4f6a7994586969991 to your computer and use it in GitHub Desktop.
Save hemebond/96b4dc04102234e4f6a7994586969991 to your computer and use it in GitHub Desktop.
Sublime Text 3 LSP PyLS Project Settings
{
"clients": {
"pyls": {
"command": [
"~/.environments/pyls/bin/pyls"
],
"enabled": false,
"settings": {
"pyls": {
"plugins": {
"pycodestyle": {
"ignore": [
"E101",
"E302",
"E303",
"E305",
"E501",
"W191"
]
}
}
}
}
}
}
}
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"LSP":
{
"pyls":
{
"enabled": true,
"env": {
"PYFLAKES_BUILTINS": "__salt__,__utils__"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment