Skip to content

Commit 7444c2e

Browse files
committed
removed prospectorSourcePath, to use absolute paths #142
1 parent e6aaf3e commit 7444c2e

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -372,11 +372,6 @@
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": "",

src/client/common/configSettings.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

src/client/formatters/baseFormatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)