From ac2a7b7ef446fbb56cf4b17984614b5624253806 Mon Sep 17 00:00:00 2001 From: jcolebrand Date: Tue, 30 May 2023 22:45:17 -0700 Subject: [PATCH] git file changes --- .gitattributes | 12 ++++++++++++ .gitignore | 20 ++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..34fee0a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +# PowerShell project files will always be CRLF and should be compared as text +*.ps1 text eol=crlf +*.psm1 text eol=crlf +*.psd1 text eol=crlf +*.psc1 text eol=crlf +*.ps1xml text eol=crlf +*.clixml text eol=crlf \ No newline at end of file diff --git a/.gitignore b/.gitignore index 539ea3a..23b43ba 100644 --- a/.gitignore +++ b/.gitignore @@ -135,4 +135,24 @@ _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML +# VS Code .vscode/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Test Coverage +[Tt]est[Rr]esults*/ +[Tt]est[Cc]overage*/ +**/*.coverage.xml +**/coverage.xml + + +# PowerShell +**/*.psm1 + +# PESTER +*[Tt]ests.xml