Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29cb6fb

Browse files
JohnstonCodeDonJayamanne
authored andcommitted
Add Svn to uriSchemesToIgnore (microsoft#443)
Add Svn to the uriSchemesToIgnore as its causing an issue for users of the Svn SCM extension [https://github.com/JohnstonCode/svn-scm/issues/85](https://github.com/JohnstonCode/svn-scm/issues/85)
1 parent 262a325 commit 29cb6fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/providers/lintProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import * as pylint from './../linters/pylint';
2222
// tslint:disable-next-line:no-require-imports no-var-requires
2323
const Minimatch = require('minimatch').Minimatch;
2424

25-
const uriSchemesToIgnore = ['git', 'showModifications'];
25+
const uriSchemesToIgnore = ['git', 'showModifications', 'svn'];
2626
const lintSeverityToVSSeverity = new Map<linter.LintMessageSeverity, vscode.DiagnosticSeverity>();
2727
lintSeverityToVSSeverity.set(linter.LintMessageSeverity.Error, vscode.DiagnosticSeverity.Error);
2828
lintSeverityToVSSeverity.set(linter.LintMessageSeverity.Hint, vscode.DiagnosticSeverity.Hint);

0 commit comments

Comments
 (0)