From 2bdba631bf9c6a9ba741d72c9002d9f8dd672623 Mon Sep 17 00:00:00 2001 From: William Wagner <44823142+williamw2@users.noreply.github.com> Date: Wed, 11 Aug 2021 13:56:37 -0700 Subject: [PATCH] Add Git Ignore and Attribute files (#63) --- .gitattributes | 2 ++ .gitignore | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8b3b8bd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Set the default behavior, in case contributors don't have core.autocrlf set. +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e87b527 --- /dev/null +++ b/.gitignore @@ -0,0 +1,66 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Coverage directory used by tools like istanbul +coverage +cc-test-reporter + +# Dependency directories +node_modules/ + +# Typescript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# Ignore distribution directory +dist/ + +# Ignore build www directories +www/ +storybook-static + +# Ignore Mac .DS_Store +.DS_Store + +#Ignore VSCode in Root +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# tmp directories +.tmp/ +temp/ + +# npm package-locks +package-lock.json + +# GitHub Actions Local Testing +.github/workflows/testing/*.json + +# Ignore Build Artefacts +bin/ +obj/