Skip to content

Commit

Permalink
.gitignore: Even moar junk
Browse files Browse the repository at this point in the history
  • Loading branch information
kj4ezj committed May 15, 2024
1 parent b743f2a commit a0d9cfd
Showing 1 changed file with 57 additions and 37 deletions.
94 changes: 57 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,63 @@
# archives
*.7z
*.7zip
*.bz2
*.dmg
*.gpg
*.gz
*.gzip
*.iso
*.lzo
*.rar
*.tar
*.tar.gz
*.tgz
*.xz
*.zip
*.zst
*.zstd

# binary files
*.a
*.bin

# bpkg
deps

# build artifacts
build

# compiled dynamic libraries
*.d
*.dll
*.dylib
*.so

# compiled object files
*.gch
*.la
*.lai
*.lib
*.lo
*.o
*.obj
*.pch
*.slo
*.so

# compiled static libraries
*.a
*.la
*.lai
*.lib
# build artifacts
artifacts
build
.cache
cache
coverage
deps
dist
node_modules
out
target
tmp

# data
# data files
*.csv
*.db
*.dbf
*.fods
*.html
*.json
*.ods
*.odt
*.ots
*.sqlite
*.tsv
*.uos
*.xhtml
*.xls
*.xlsm
*.xlsx
Expand All @@ -61,40 +72,45 @@ build
*.vim
.vscode

# environment files
# environment variable files
.env
.env.test

# executables
*.apk
*.app
*.AppImage
*.com
*.deb
*.dll
*.dmg
*.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
npm-debug.log*
*.log*
*.txt
yarn-debug.log*
yarn-error.log*

# macOS finder
.DS_Store

# node
.cache
Expand All @@ -103,23 +119,27 @@ 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

# precompiled headers
*.gch
*.pch

# prerequisites
*.d

# python
__pycache__
.mypy_cache

# temporary files
*.bak
*.old
*.orig
*.test
*.tmp

0 comments on commit a0d9cfd

Please sign in to comment.