-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from TrimarcJake/testing
2023.11 Release
- Loading branch information
Showing
10 changed files
with
904 additions
and
359 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
# Powershell files | ||
[*.{ps1,psd1,psm1}] | ||
indent_size = 4 | ||
|
||
[*.md] | ||
indent_size = 2 | ||
|
||
# Data serialization | ||
[*.{json,yaml,yml}] | ||
indent_size = 2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
Ignore/* | ||
.DS_Store | ||
.vs/* | ||
.vscode/* | ||
Examples/Output/* | ||
Releases/* | ||
ADCSIssues.CSV | ||
ADCSRemediation.CSV | ||
Artefacts/* | ||
Examples/Output/* | ||
Ignore/* | ||
Lib/Core/* | ||
Lib/Default/* | ||
Lib/Standard/* | ||
ReleasedUnpacked/* | ||
Releases/* | ||
Sources/.vs | ||
Sources/*/.vs | ||
Sources/*/obj | ||
Sources/*/bin | ||
Sources/*/*/obj | ||
Sources/*/*/bin | ||
Sources/packages/* | ||
Lib/Default/* | ||
Lib/Standard/* | ||
Lib/Core/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"editorconfig.editorconfig", | ||
"ms-vscode.PowerShell", | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"[*]": { | ||
"editor.tabSize": 4, | ||
"files.trimTrailingWhitespace": false, | ||
"editor.insertSpaces": true, | ||
"files.insertFinalNewline": true | ||
}, | ||
"[markdown]": { | ||
"editor.tabSize": 2, | ||
}, | ||
"[json]": { | ||
"editor.tabSize": 2, | ||
}, | ||
|
||
// Sets the codeformatting options to follow the given indent style in a way that is compatible with PowerShell syntax. For more information about the brace styles please refer to https://github.com/PoshCode/PowerShellPracticeAndStyle/issues/81. | ||
"powershell.codeFormatting.preset": "OTBS", | ||
|
||
// 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, | ||
|
||
// Omnisharp : Enable EditorConfig support | ||
"omnisharp.enableEditorConfigSupport": true | ||
} |
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.