Skip to content

Commit 6c38c58

Browse files
committed
Be consistently explicit about false defaults on boolean config properties
1 parent 5ae048b commit 6c38c58

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

package.json

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1310,12 +1310,14 @@
13101310
"objectscript.serverSourceControl.disableOtherActionTriggers": {
13111311
"description": "Prevent server-side source control 'other action' triggers from firing.",
13121312
"type": "boolean",
1313-
"scope": "resource"
1313+
"scope": "resource",
1314+
"default": false
13141315
},
13151316
"objectscript.serverSourceControl.respectEditableStatus": {
13161317
"markdownDescription": "Set `isfs` document readonly if GetStatus method of server-side source control class returns Editable = 0.",
13171318
"type": "boolean",
1318-
"scope": "resource"
1319+
"scope": "resource",
1320+
"default": false
13191321
},
13201322
"objectscript.export": {
13211323
"type": "object",
@@ -1379,11 +1381,13 @@
13791381
},
13801382
"atelier": {
13811383
"description": "Export source code as Atelier did it, with packages as subfolders. This setting only affects classes, routines, include files and DFI files.",
1382-
"type": "boolean"
1384+
"type": "boolean",
1385+
"default": false
13831386
},
13841387
"generated": {
13851388
"description": "Export generated source code files, such as INTs generated from classes.",
1386-
"type": "boolean"
1389+
"type": "boolean",
1390+
"default": false
13871391
},
13881392
"filter": {
13891393
"markdownDescription": "SQL filter to limit what to export. The filter is applied to document names using the [LIKE predicate](https://irisdocs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_like) (i.e. `Name LIKE '%filter%'`).",
@@ -1402,19 +1406,22 @@
14021406
},
14031407
"noStorage": {
14041408
"description": "Strip the storage definition on export. Can be useful when working across multiple systems.",
1405-
"type": "boolean"
1409+
"type": "boolean",
1410+
"default": false
14061411
},
14071412
"dontExportIfNoChanges": {
14081413
"description": "Do not rewrite the local file if the content is identical to what came from the server.",
1409-
"type": "boolean"
1414+
"type": "boolean",
1415+
"default": false
14101416
},
14111417
"maxConcurrentConnections": {
14121418
"description": "Maximum number of concurrent export connections. (0 = unlimited)",
14131419
"type": "number"
14141420
},
14151421
"mapped": {
14161422
"description": "Export source code files mapped from a non-default database.",
1417-
"type": "boolean"
1423+
"type": "boolean",
1424+
"default": false
14181425
}
14191426
}
14201427
},
@@ -1693,7 +1700,8 @@
16931700
},
16941701
"stopOnEntry": {
16951702
"type": "boolean",
1696-
"description": "Automatically stop target after attach. If not specified, target does not stop."
1703+
"description": "Automatically stop target after attach. If not specified, target does not stop.",
1704+
"default": false
16971705
}
16981706
}
16991707
}

0 commit comments

Comments
 (0)