Update git configuration

This commit is contained in:
Nick Alteen
2023-09-14 10:34:58 -04:00
parent ce2ce1b47c
commit 71f9b03865
2 changed files with 45 additions and 9 deletions

2
.gitattributes vendored
View File

@ -1 +1 @@
dist/** -diff linguist-generated=true dist/** -diff linguist-generated=true

52
.gitignore vendored
View File

@ -1,16 +1,17 @@
node_modules/ # Dependency directory
node_modules
# Editors
.vscode/
.idea/
*.iml
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
# Logs # Logs
logs logs
*.log *.log
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data # Runtime data
pids pids
@ -23,11 +24,12 @@ lib-cov
# Coverage directory used by tools like istanbul # Coverage directory used by tools like istanbul
coverage coverage
*.lcov
# nyc test coverage # nyc test coverage
.nyc_output .nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt .grunt
# Bower dependency directory (https://bower.io/) # Bower dependency directory (https://bower.io/)
@ -39,12 +41,15 @@ bower_components
# Compiled binary addons (https://nodejs.org/api/addons.html) # Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release build/Release
# Other Dependency directories # Dependency directories
jspm_packages/ jspm_packages/
# TypeScript v1 declaration files # TypeScript v1 declaration files
typings/ typings/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory # Optional npm cache directory
.npm .npm
@ -62,6 +67,37 @@ typings/
# dotenv environment variables file # dotenv environment variables file
.env .env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output # next.js build output
.next .next
# nuxt.js build output
.nuxt
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# OS metadata
.DS_Store
Thumbs.db
# Ignore built ts files
__tests__/runner/*
# IDE files
.idea
.vscode
*.code-workspace