File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 372372 "default" : " prospector" ,
373373 "description" : " Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path."
374374 },
375- "python.linting.prospectorSourcePath" : {
376- "type" : " string" ,
377- "default" : " " ,
378- "description" : " Path to python source (relative to workspace)."
379- },
380375 "python.linting.prospectorExtraCommands" : {
381376 "type" : " string" ,
382377 "default" : " " ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ export interface ILintingSettings {
3636 maxNumberOfProblems : number ;
3737 pylintCategorySeverity : IPylintCategorySeverity ;
3838 prospectorPath : string ;
39- prospectorSourcePath : string ;
4039 prospectorExtraCommands : string ;
4140 pylintPath : string ;
4241 pep8Path : string ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export abstract class BaseFormatter {
2626 return document . save ( ) . then ( saved => {
2727 let filePath = document . uri . fsPath ;
2828 if ( ! fs . existsSync ( filePath ) ) {
29- vscode . window . showErrorMessage ( `File ${ filePath } does not exist` )
29+ vscode . window . showErrorMessage ( `File ${ filePath } does not exist` ) ;
3030 return [ ] ;
3131 }
3232
You can’t perform that action at this time.
0 commit comments