Skip to content

Commit d7a430a

Browse files
committed
Organize package.json configuration settings
1 parent df94edc commit d7a430a

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,10 @@
267267
"type": "object",
268268
"title": "puppet",
269269
"properties": {
270-
"puppet.format.enable": {
271-
"type": "boolean",
272-
"scope": "window",
273-
"default": true,
274-
"description": "Enable/disable the Puppet formatter"
270+
"puppet.puppetAgentDir": {
271+
"type": "string",
272+
"default": null,
273+
"description": "The fully qualified path to the Puppet agent install directory. For example: 'C:\\Program Files\\Puppet Labs\\Puppet' or '/opt/puppetlabs/puppet'"
275274
},
276275
"puppet.languageclient.protocol": {
277276
"type": "string",
@@ -282,6 +281,18 @@
282281
"tcp"
283282
]
284283
},
284+
"puppet.languageclient.minimumUserLogLevel": {
285+
"type": "string",
286+
"default": "normal",
287+
"description": "Set the minimum log level that the user will see on the Puppet connection logs",
288+
"enum": [
289+
"verbose",
290+
"debug",
291+
"normal",
292+
"warning",
293+
"error"
294+
]
295+
},
285296
"puppet.languageserver.address": {
286297
"type": "string",
287298
"default": "127.0.0.1",
@@ -307,22 +318,11 @@
307318
"default": "",
308319
"description": "Set the local Puppet Language Server to send debug information to a file"
309320
},
310-
"puppet.languageclient.minimumUserLogLevel": {
311-
"type": "string",
312-
"default": "normal",
313-
"description": "Set the minimum log level that the user will see on the Puppet connection logs",
314-
"enum": [
315-
"verbose",
316-
"debug",
317-
"normal",
318-
"warning",
319-
"error"
320-
]
321-
},
322-
"puppet.puppetAgentDir": {
323-
"type": "string",
324-
"default": null,
325-
"description": "The fully qualified path to the Puppet agent install directory. For example: 'C:\\Program Files\\Puppet Labs\\Puppet' or '/opt/puppetlabs/puppet'"
321+
"puppet.format.enable": {
322+
"type": "boolean",
323+
"scope": "window",
324+
"default": true,
325+
"description": "Enable/disable the Puppet formatter"
326326
}
327327
}
328328
},

0 commit comments

Comments
 (0)