|
332 | 332 | "powershell.scriptAnalysis.enable": { |
333 | 333 | "type": "boolean", |
334 | 334 | "default": true, |
335 | | - "description": "Enables real-time script analysis from PowerShell Script Analyzer. This extension uses the PSScriptAnalyzer module in $home/.vscode/extensions/ms-vscode.PowerShell-<version>/modules/PSScriptAnalyzer" |
| 335 | + "description": "Enables real-time script analysis from PowerShell Script Analyzer. Uses the newest installed version of the PSScriptAnalyzer module or the version bundled with this extension, if it is newer." |
336 | 336 | }, |
337 | 337 | "powershell.scriptAnalysis.settingsPath": { |
338 | 338 | "type": "string", |
|
376 | 376 | "powershell.codeFormatting.newLineAfterOpenBrace": { |
377 | 377 | "type": "boolean", |
378 | 378 | "default": true, |
379 | | - "description": "A new line must follow an open brace." |
| 379 | + "description": "Adds a newline (line break) after an open brace." |
380 | 380 | }, |
381 | 381 | "powershell.codeFormatting.newLineAfterCloseBrace": { |
382 | 382 | "type": "boolean", |
383 | 383 | "default": true, |
384 | | - "description": "A new line must follow a close brace." |
| 384 | + "description": "Adds a newline (line break) after a closing brace." |
385 | 385 | }, |
386 | 386 | "powershell.codeFormatting.whitespaceBeforeOpenBrace": { |
387 | 387 | "type": "boolean", |
388 | 388 | "default": true, |
389 | | - "description": "There must be a whitespace between a keyword and its associated scriptblock expression." |
| 389 | + "description": "Adds a space between a keyword and its associated scriptblock expression." |
390 | 390 | }, |
391 | 391 | "powershell.codeFormatting.whitespaceBeforeOpenParen": { |
392 | 392 | "type": "boolean", |
393 | 393 | "default": true, |
394 | | - "description": "There must be whitespace between an keyword (if, elseif, while, switch, etc) and its associated conditional expression." |
| 394 | + "description": "Adds a space between a keyword (if, elseif, while, switch, etc) and its associated conditional expression." |
395 | 395 | }, |
396 | 396 | "powershell.codeFormatting.whitespaceAroundOperator": { |
397 | 397 | "type": "boolean", |
398 | 398 | "default": true, |
399 | | - "description": "There must be whitespaces around both sides of a binary or assignment operator ('=', '+', '-', etc.)." |
| 399 | + "description": "Adds spaces before and after an operator ('=', '+', '-', etc.)." |
400 | 400 | }, |
401 | 401 | "powershell.codeFormatting.whitespaceAfterSeparator": { |
402 | 402 | "type": "boolean", |
403 | 403 | "default": true, |
404 | | - "description": "There must be a whitespaces after a separator (',' and ';')." |
| 404 | + "description": "Adds a space after a separator (',' and ';')." |
405 | 405 | }, |
406 | 406 | "powershell.codeFormatting.ignoreOneLineBlock": { |
407 | 407 | "type": "boolean", |
408 | 408 | "default": true, |
409 | | - "description": "Ignore blocks of code on one line. For example, if true, the braces in \"if (...) {...} else {...}\", will not be formatted." |
| 409 | + "description": "Does not reformat one-line code blocks, such as \"if (...) {...} else {...}\"." |
410 | 410 | }, |
411 | 411 | "powershell.integratedConsole.showOnStartup": { |
412 | 412 | "type": "boolean", |
|
0 commit comments