forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To ensure consistent style throughout the project, I've done the following to all *.ps1 files and module files: Format document in VS Code with the following codeFormatting settings: // Places open brace on the same line as its associated statement. "powershell.codeFormatting.openBraceOnSameLine": true, // Adds a newline (line break) after an open brace. "powershell.codeFormatting.newLineAfterOpenBrace": true, // Adds a newline (line break) after a closing brace. "powershell.codeFormatting.newLineAfterCloseBrace": true, // Adds a space between a keyword and its associated scriptblock expression. "powershell.codeFormatting.whitespaceBeforeOpenBrace": true, // Adds a space between a keyword (if, elseif, while, switch, etc) and its associated conditional expression. "powershell.codeFormatting.whitespaceBeforeOpenParen": true, // Adds spaces before and after an operator ('=', '+', '-', etc.). "powershell.codeFormatting.whitespaceAroundOperator": true, // Adds a space after a separator (',' and ';'). "powershell.codeFormatting.whitespaceAfterSeparator": true, // Does not reformat one-line code blocks, such as "if (...) {...} else {...}". "powershell.codeFormatting.ignoreOneLineBlock": true, // Align assignment statements in a hashtable or a DSC Configuration. "powershell.codeFormatting.alignPropertyValuePairs": true, Remove trailing tabs Replace leading tabs with 4 spaces String literals and here-strings intentionally left completely unchanged.
- Loading branch information
1 parent
6fbc5fd
commit 9d3aece
Showing
472 changed files
with
64,405 additions
and
64,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.