Created
May 20, 2025 03:57
-
-
Save colorincode/40c9eccd0db8bd61f6d083976c4f8f1b to your computer and use it in GitHub Desktop.
my gitignore
This file contains hidden or 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
# global gitiggnore. reuse for bun, parcel, deno | |
# locals | |
*.orig | |
*.pyc | |
*.swp | |
.env | |
assets/ | |
working-files/ | |
workingfiles/ | |
reports/ | |
playwright-deno-tests/ | |
playwright-report/ | |
screenshots/ | |
dist/ | |
prod/ | |
node_modules/ | |
jspm_packages/ | |
*.tgz | |
# deno specific | |
*.code-workspace | |
xutil/test/files/ | |
denoLandX/ | |
deno-dom/ | |
deno.lock | |
# Logs | |
logs | |
_.log | |
npm-debug.log_ | |
yarn-debug.log* | |
yarn-error.log* | |
lerna-debug.log* | |
.pnpm-debug.log* | |
# Caches | |
.cache | |
# Diagnostic reports (https://nodejs.org/api/report.html) | |
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json | |
.lock-wscript | |
# runtime | |
pids | |
_.pid | |
_.seed | |
*.pid.lock | |
# Directory for instrumented libs generated by jscoverage/JSCover | |
lib-cov | |
# Coverage directory used by tools like istanbul | |
coverage | |
*.lcov | |
/.cargo_home/ | |
/.idea/ | |
/.vs/ | |
/.vscode/ | |
gclient_config.py_entries | |
/target/ | |
/std/hash/_wasm/target | |
/tests/wpt/runner/manifest.json | |
/third_party/ | |
/tests/napi/node_modules | |
/tests/napi/build | |
/tests/napi/third_party_tests/node_modules | |
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | |
.nyc_output | |
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | |
.grunt | |
# Bower dependency directory (https://bower.io/) | |
bower_components | |
# node-waf configuration | |
.lock-wscript | |
# Compiled binary addons (https://nodejs.org/api/addons.html) | |
build/Release | |
# Dependency directories | |
node_modules/ | |
jspm_packages/ | |
# Snowpack dependency directory (https://snowpack.dev/) | |
web_modules/ | |
# TypeScript cache | |
*.tsbuildinfo | |
# Optional npm cache directory | |
.npm | |
.npmrc | |
# Optional eslint cache | |
.eslintcache | |
# Optional stylelint cache | |
.stylelintcache | |
# Microbundle cache | |
.rpt2_cache/ | |
.rts2_cache_cjs/ | |
.rts2_cache_es/ | |
.rts2_cache_umd/ | |
# Optional REPL history | |
.node_repl_history | |
# Output of 'npm pack' | |
*.tgz | |
# Yarn Integrity file | |
.yarn-integrity | |
# dotenv environment variable files | |
.env | |
.env.development.local | |
.env.test.local | |
.env.production.local | |
.env.local | |
# parcel-bundler cache (https://parceljs.org/) | |
.parcel-cache | |
# Next.js build output | |
.next | |
out | |
# Nuxt.js build / generate output | |
.nuxt | |
dist | |
.vuepress/dist | |
# vuepress v2.x temp and cache directory | |
.temp | |
# Docusaurus cache and generated files | |
.docusaurus | |
# Serverless directories | |
.serverless/ | |
# FuseBox cache | |
.fusebox/ | |
.fuse_hidden* | |
# DynamoDB Local files | |
.dynamodb/ | |
# TernJS port file | |
.tern-port | |
# Stores VSCode versions used for testing VSCode extensions | |
.vscode-test | |
# yarn v2 | |
.yarn/cache | |
.yarn/unplugged | |
.yarn/build-state.yml | |
.yarn/install-state.gz | |
.pnp.* | |
# IntelliJ based IDEs | |
.idea | |
# Flamegraphs | |
/flamebench*.svg | |
/flamegraph*.svg | |
# WPT generated cert files | |
/tests/wpt/runner/certs/index.txt* | |
/tests/wpt/runner/certs/serial* | |
/ext/websocket/autobahn/reports | |
# JUnit files produced by deno test --junit | |
junit.xml | |
# Jupyter files | |
.ipynb_checkpoints/ | |
Untitled*.ipynb | |
# playwright browser binary cache | |
/.ms-playwright | |
# mac stuff | |
.DS_Store | |
.DS_Store | |
.DS_Store? | |
.AppleDouble | |
.LSOverride | |
._* | |
.com.apple.timemachine.donotpresent | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
# Windows stuff | |
Thumbs.db | |
ehthumbs.db | |
ehthumbs_vista.db | |
$RECYCLE.BIN/ | |
Desktop.ini | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
# Windows shortcuts | |
*.lnk | |
# Linux stuff | |
*~ | |
.Trash-* | |
.nfs* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment