File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ class PythonLanguageClient extends AutoLanguageClient {
83
83
"Make sure to install `pyls` 0.19 or newer by running:\n" +
84
84
"```\n" +
85
85
`${ python } -m pip install 'python-language-server[all]'\n` +
86
+ `${ python } -m pip install git+https://github.com/tomv564/pyls-mypy.git\n` +
86
87
"```" ,
87
88
} )
88
89
}
Original file line number Diff line number Diff line change 443
443
}
444
444
}
445
445
},
446
+ "pyls_mypy" : {
447
+ "title" : " MyPy" ,
448
+ "type" : " object" ,
449
+ "properties" : {
450
+ "enabled" : {
451
+ "title" : " Enabled" ,
452
+ "type" : " boolean" ,
453
+ "order" : 1 ,
454
+ "default" : true ,
455
+ "description" : " Enable or disable MyPy."
456
+ },
457
+ "live_mode" : {
458
+ "title" : " Live mode" ,
459
+ "type" : " boolean" ,
460
+ "order" : 1 ,
461
+ "default" : true ,
462
+ "description" : " Turn on live mode. If disabled, mypy linters on file save. Note: Linting on file save may not work on all machines."
463
+ }
464
+ }
465
+ },
446
466
"flake8" : {
447
467
"title" : " Flake8" ,
448
468
"type" : " object" ,
You can’t perform that action at this time.
0 commit comments