Created
August 4, 2020 13:02
-
-
Save hemebond/96b4dc04102234e4f6a7994586969991 to your computer and use it in GitHub Desktop.
Sublime Text 3 LSP PyLS Project Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"clients": { | |
"pyls": { | |
"command": [ | |
"~/.environments/pyls/bin/pyls" | |
], | |
"enabled": false, | |
"settings": { | |
"pyls": { | |
"plugins": { | |
"pycodestyle": { | |
"ignore": [ | |
"E101", | |
"E302", | |
"E303", | |
"E305", | |
"E501", | |
"W191" | |
] | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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