Merge pull request #22024 from vp2177/patch-1

Exclude CVS directories
This commit is contained in:
Benjamin Pasero
2017-03-06 09:43:05 +01:00
committed by GitHub

View File

@@ -183,7 +183,7 @@ configurationRegistry.registerConfiguration({
'files.exclude': {
'type': 'object',
'description': nls.localize('exclude', "Configure glob patterns for excluding files and folders."),
'default': { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/.DS_Store': true },
'default': { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
'additionalProperties': {
'anyOf': [
{