Skip to content

Commit 2ab0749

Browse files
committed
chore: Fixed package.json
1 parent 9f290b9 commit 2ab0749

File tree

1 file changed

+86
-93
lines changed

1 file changed

+86
-93
lines changed

package.json

Lines changed: 86 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,9 @@
1717
"bugs": {
1818
"url": "https://github.com/JohnstonCode/svn-scm/issues"
1919
},
20-
"categories": [
21-
"Other",
22-
"SCM Providers"
23-
],
24-
"keywords": [
25-
"multi-root ready",
26-
"scm",
27-
"svn"
28-
],
29-
"activationEvents": [
30-
"*"
31-
],
20+
"categories": ["Other", "SCM Providers"],
21+
"keywords": ["multi-root ready", "scm", "svn"],
22+
"activationEvents": ["*"],
3223
"main": "./out/extension",
3324
"scripts": {
3425
"vscode:prepublish": "npm run lint && tsc -p ./",
@@ -66,13 +57,10 @@
6657
"typescript": "^3.0",
6758
"vscode": "^1.1.18",
6859
"semantic-release": "^15.9.8",
69-
"semantic-release-vsce": "^2.1.2",
60+
"semantic-release-vsce": "^2.1.2"
7061
},
7162
"release": {
72-
"verifyConditions": [
73-
"semantic-release-vsce",
74-
"@semantic-release/github"
75-
],
63+
"verifyConditions": ["semantic-release-vsce", "@semantic-release/github"],
7664
"publish": [
7765
{
7866
"path": "semantic-release-vsce",
@@ -277,11 +265,13 @@
277265
},
278266
{
279267
"command": "svn.openChangeBase",
280-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
268+
"when":
269+
"config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
281270
},
282271
{
283272
"command": "svn.openChangeHead",
284-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
273+
"when":
274+
"config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
285275
},
286276
{
287277
"command": "svn.openFile",
@@ -337,7 +327,8 @@
337327
},
338328
{
339329
"command": "svn.revertSelectedRanges",
340-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnHasSupportToRegisterDiffCommand == 1"
330+
"when":
331+
"config.svn.enabled && svnOpenRepositoryCount != 0 && svnHasSupportToRegisterDiffCommand == 1"
341332
},
342333
{
343334
"command": "svn.close",
@@ -407,77 +398,92 @@
407398
"scm/resourceState/context": [
408399
{
409400
"command": "svn.add",
410-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
401+
"when":
402+
"config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
411403
"group": "inline"
412404
},
413405
{
414406
"command": "svn.add",
415-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
407+
"when":
408+
"config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
416409
"group": "1_modification"
417410
},
418411
{
419412
"command": "svn.openFile",
420-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != external",
413+
"when":
414+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != external",
421415
"group": "navigation"
422416
},
423417
{
424418
"command": "svn.openHEADFile",
425-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
419+
"when":
420+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
426421
"group": "navigation"
427422
},
428423
{
429424
"command": "svn.openChangeBase",
430-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
425+
"when":
426+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
431427
"group": "navigation"
432428
},
433429
{
434430
"command": "svn.openChangeHead",
435-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
431+
"when":
432+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external",
436433
"group": "navigation"
437434
},
438435
{
439436
"command": "svn.patch",
440-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
437+
"when":
438+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
441439
"group": "navigation"
442440
},
443441
{
444442
"command": "svn.resolve",
445-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == conflicts",
443+
"when":
444+
"config.svn.enabled && scmProvider == svn && scmResourceGroup == conflicts",
446445
"group": "inline"
447446
},
448447
{
449448
"command": "svn.resolve",
450-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == conflicts",
449+
"when":
450+
"config.svn.enabled && scmProvider == svn && scmResourceGroup == conflicts",
451451
"group": "1_modification"
452452
},
453453
{
454454
"command": "svn.changelist",
455-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
455+
"when":
456+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
456457
"group": "inline"
457458
},
458459
{
459460
"command": "svn.changelist",
460-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
461+
"when":
462+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
461463
"group": "1_modification"
462464
},
463465
{
464466
"command": "svn.commit",
465-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
467+
"when":
468+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
466469
"group": "1_modification"
467470
},
468471
{
469472
"command": "svn.revert",
470-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
473+
"when":
474+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
471475
"group": "2_modification"
472476
},
473477
{
474478
"command": "svn.remove",
475-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
479+
"when":
480+
"config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external && scmResourceGroup != conflicts && scmResourceGroup != remotechanged",
476481
"group": "2_modification"
477482
},
478483
{
479484
"command": "svn.addToIgnoreSCM",
480-
"when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
485+
"when":
486+
"config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned",
481487
"group": "1_modification"
482488
}
483489
],
@@ -491,22 +497,26 @@
491497
{
492498
"command": "svn.openFile",
493499
"group": "navigation",
494-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != extension && resourceScheme != merge-conflicts.conflicts-diff"
500+
"when":
501+
"config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != extension && resourceScheme != merge-conflicts.conflicts-diff"
495502
},
496503
{
497504
"command": "svn.openChangeBase",
498505
"group": "navigation",
499-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges && !isInDiffEditor && resourceScheme == file"
506+
"when":
507+
"config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges && !isInDiffEditor && resourceScheme == file"
500508
},
501509
{
502510
"command": "svn.openChangeHead",
503511
"group": "navigation",
504-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges && !isInDiffEditor && resourceScheme == file"
512+
"when":
513+
"config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges && !isInDiffEditor && resourceScheme == file"
505514
},
506515
{
507516
"command": "svn.revertSelectedRanges",
508517
"group": "2_svn@3",
509-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflicts.conflicts-diff && && svnHasSupportToRegisterDiffCommand == 1"
518+
"when":
519+
"config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflicts.conflicts-diff && && svnHasSupportToRegisterDiffCommand == 1"
510520
}
511521
],
512522
"explorer/context": [
@@ -518,7 +528,8 @@
518528
{
519529
"command": "svn.renameExplorer",
520530
"group": "7_modification",
521-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus"
531+
"when":
532+
"config.svn.enabled && svnOpenRepositoryCount != 0 && explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus"
522533
}
523534
]
524535
},
@@ -537,14 +548,12 @@
537548
},
538549
"svn.decorations.enabled": {
539550
"type": "boolean",
540-
"description": "Controls if SVN contributes colors and badges to the explorer and the open (VSCode >= 1.18 with proposed-api)",
551+
"description":
552+
"Controls if SVN contributes colors and badges to the explorer and the open (VSCode >= 1.18 with proposed-api)",
541553
"default": true
542554
},
543555
"svn.path": {
544-
"type": [
545-
"string",
546-
"null"
547-
],
556+
"type": ["string", "null"],
548557
"description": "Path to the svn executable",
549558
"default": null,
550559
"isExecutable": true
@@ -561,59 +570,47 @@
561570
},
562571
"svn.diff.withHead": {
563572
"type": "boolean",
564-
"description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder",
573+
"description":
574+
"Show diff changes using latest revision in the repository. Set false to use latest revision in local folder",
565575
"default": true
566576
},
567577
"svn.layout.trunkRegex": {
568-
"type": [
569-
"string",
570-
"null"
571-
],
572-
"description": "Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')",
578+
"type": ["string", "null"],
579+
"description":
580+
"Regex to detect path for 'trunk' in SVN URL, 'null' to disable. (Ex.: '(trunk)', '(main)')",
573581
"default": "(trunk)(/.*)?"
574582
},
575583
"svn.layout.trunkRegexName": {
576-
"type": [
577-
"number"
578-
],
584+
"type": ["number"],
579585
"description": "Regex group position for name of trunk",
580586
"default": 1
581587
},
582588
"svn.layout.branchesRegex": {
583-
"type": [
584-
"string",
585-
"null"
586-
],
587-
"description": "Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/[^/]+/([^/]+)(/.*)?' (Ex.: 'branches/...', 'versions/...')",
589+
"type": ["string", "null"],
590+
"description":
591+
"Regex to detect path for 'branches' in SVN URL, 'null' to disable. Subpath use 'branches/[^/]+/([^/]+)(/.*)?' (Ex.: 'branches/...', 'versions/...')",
588592
"default": "branches/([^/]+)(/.*)?"
589593
},
590594
"svn.layout.branchesRegexName": {
591-
"type": [
592-
"number"
593-
],
595+
"type": ["number"],
594596
"description": "Regex group position for name of branch",
595597
"default": 1
596598
},
597599
"svn.layout.tagsRegex": {
598-
"type": [
599-
"string",
600-
"null"
601-
],
602-
"description": "Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/[^/]+/([^/]+)(/.*)?'. (Ex.: 'tags/...', 'stamps/...')",
600+
"type": ["string", "null"],
601+
"description":
602+
"Regex to detect path for 'tags' in SVN URL, 'null' to disable. Subpath use 'tags/[^/]+/([^/]+)(/.*)?'. (Ex.: 'tags/...', 'stamps/...')",
603603
"default": "tags/([^/]+)(/.*)?"
604604
},
605605
"svn.layout.tagRegexName": {
606-
"type": [
607-
"number"
608-
],
606+
"type": ["number"],
609607
"description": "Regex group position for name of tag",
610608
"default": 1
611609
},
612610
"svn.layout.showFullName": {
613-
"type": [
614-
"boolean"
615-
],
616-
"description": "Set true to show 'branches/<name>' and false to show only '<name>'",
611+
"type": ["boolean"],
612+
"description":
613+
"Set true to show 'branches/<name>' and false to show only '<name>'",
617614
"default": true
618615
},
619616
"svn.multipleFolders.enabled": {
@@ -630,29 +627,24 @@
630627
"svn.multipleFolders.ignore": {
631628
"type": "array",
632629
"description": "Folders to ignore using SVN",
633-
"default": [
634-
"**/.git",
635-
"**/.hg",
636-
"**/vendor",
637-
"**/node_modules"
638-
]
630+
"default": ["**/.git", "**/.hg", "**/vendor", "**/node_modules"]
639631
},
640632
"svn.sourceControl.ignoreOnCommit": {
641633
"type": "array",
642634
"description": "Changelists to ignore on commit",
643-
"default": [
644-
"ignore-on-commit"
645-
]
635+
"default": ["ignore-on-commit"]
646636
},
647637
"svn.detectExternals": {
648638
"type": "boolean",
649639
"default": true,
650-
"description": "Controls whether to automatically detect svn externals."
640+
"description":
641+
"Controls whether to automatically detect svn externals."
651642
},
652643
"svn.sourceControl.combineExternalIfSameServer": {
653644
"type": "boolean",
654645
"default": false,
655-
"description": "Combine the svn external in the main if is from the same server."
646+
"description":
647+
"Combine the svn external in the main if is from the same server."
656648
},
657649
"svn.sourceControl.countUnversioned": {
658650
"type": "boolean",
@@ -661,7 +653,8 @@
661653
},
662654
"svn.sourceControl.countIgnoreOnCommit": {
663655
"type": "boolean",
664-
"description": "Allow to count ignored files to commit in status count",
656+
"description":
657+
"Allow to count ignored files to commit in status count",
665658
"default": false
666659
},
667660
"svn.log.length": {
@@ -682,15 +675,14 @@
682675
},
683676
"svn.update.ignoreExternals": {
684677
"type": "boolean",
685-
"description": "Set to ignore externals definitions on update (add --ignore-externals)",
678+
"description":
679+
"Set to ignore externals definitions on update (add --ignore-externals)",
686680
"default": true
687681
},
688682
"svn.default.encoding": {
689-
"type": [
690-
"string",
691-
"null"
692-
],
693-
"description": "Encoding of svn output if the output is not utf-8. When this parameter is null, the encoding is automatically detected. Example: 'windows-1252'.",
683+
"type": ["string", "null"],
684+
"description":
685+
"Encoding of svn output if the output is not utf-8. When this parameter is null, the encoding is automatically detected. Example: 'windows-1252'.",
694686
"default": null
695687
},
696688
"svn.showUpdateMessage": {
@@ -700,7 +692,8 @@
700692
},
701693
"svn.remoteChanges.checkFrequency": {
702694
"type": "number",
703-
"description": "Set the interval in seconds to check changed files on remote repository and show in statusbar. 0 to disable",
695+
"description":
696+
"Set the interval in seconds to check changed files on remote repository and show in statusbar. 0 to disable",
704697
"default": 300
705698
}
706699
}

0 commit comments

Comments
 (0)