From 4258f3550119269ef65ec200bf248db51449191a Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Thu, 4 Jul 2024 18:33:15 -0400 Subject: [PATCH 1/3] Copy https://github.com/kj4ezj/is/blob/a09c1ac5ec98efebbeab20b2a4b53c8d78374605/.gitignore --- .gitignore | 152 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 143 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 1e0c13d..8944b0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,145 @@ -.idea -.DS_Store +# archives +*.7z +*.7zip +*.bz2 +*.dmg +*.gpg +*.gz +*.gzip +*.iso +*.lzo +*.rar +*.tar +*.tgz +*.xz +*.zip +*.zst +*.zstd + +# binary files +*.a +*.bin +*.d +*.dll +*.dylib +*.gch +*.la +*.lai +*.lib +*.lo +*.o +*.obj +*.pch +*.slo +*.so + +# build artifacts +artifacts +build +.cache +cache +coverage +deps +dist node_modules -/build -/.svelte-kit -/package +out +target +tmp + +# data files +*.csv +*.db +*.dbf +*.fods +*.json +*.ods +*.odt +*.ots +*.sqlite +*.tsv +*.uos +*.xls +*.xlsm +*.xlsx +*.xlt +*.xltx +*.xml + +# editor files +.ccls-cache +.idea +*.sw? +*.vim +.vscode + +# environment variable files .env -.env.* -!.env.example -vite.config.js.timestamp-* -vite.config.ts.timestamp-* + +# executables +*.apk +*.app +*.AppImage +*.com +*.deb +*.exe +*.jar +*.msi +*.out +*.rpm + +# file explorer metadata +._* +*.DS_Store* +ehthumbs.db +lost+found +.Spotlight* +thumbs.db +Thumbs.db +thumbs.db:encryptable +thumbs.db_encryptable +.Trashes + +# keys and certs +*.cer +*.crt +*.key +*.pem +*.pub + +# logs +logs +*.log +*.log* +*.txt + +# node +.cache +coverage +dist +.eslintcache +*.lcov +lib-cov +*.lock +.next +node_modules +.node_repl_history +.npm +npm-debug.log* +.nuxt +.serverless +*.tsbuildinfo +typings +yarn-debug.log* +yarn-error.log* +.yarn-integrity + +# python +__pycache__ +.mypy_cache + +# temporary files +*.bak +*.old +*.orig +*.test +*.tmp From c6f633e274fd1260b747a4e4356f038704ddaf91 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Thu, 4 Jul 2024 18:34:39 -0400 Subject: [PATCH 2/3] Copy .gitignore customizations from this repo --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 8944b0e..9220176 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,7 @@ deps dist node_modules out +package target tmp @@ -127,8 +128,11 @@ node_modules npm-debug.log* .nuxt .serverless +.svelte-kit *.tsbuildinfo typings +vite.config.js.timestamp-* +vite.config.ts.timestamp-* yarn-debug.log* yarn-error.log* .yarn-integrity From cabbdb9757737c0eda4e99bf862b1fe0f2f1ba97 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Thu, 4 Jul 2024 18:35:22 -0400 Subject: [PATCH 3/3] Ignore .netlify folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9220176..3a47f86 100644 --- a/.gitignore +++ b/.gitignore @@ -121,6 +121,7 @@ dist *.lcov lib-cov *.lock +.netlify .next node_modules .node_repl_history