Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 28 additions & 77 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,28 @@
# Generated by gitignore.in
# Edit .gitignore.in instead of this file
# Run `gitignore.in` to build .gitignore
# #!/usr/bin/env bash
# # `gibo list' and `gi list'
# -----------------------------------------------------------------------------
# gibo dump Linux
### Generated by gibo (https://github.com/simonwhitaker/gibo)
### https://raw.github.com/github/gitignore/4d89c5d3e2880f946f63dd4346192dcd7e428d5a/Global/Linux.gitignore
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Linux.gitignore

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# Metadata left by Dolphin file manager, which comes with KDE Plasma
# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# Log files created by default by the nohup command
nohup.out
# -----------------------------------------------------------------------------
# gibo dump Windows
### Generated by gibo (https://github.com/simonwhitaker/gibo)
### https://raw.github.com/github/gitignore/4d89c5d3e2880f946f63dd4346192dcd7e428d5a/Global/Windows.gitignore
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Windows.gitignore

# Windows thumbnail cache files
Thumbs.db
Expand Down Expand Up @@ -57,69 +52,38 @@ $RECYCLE.BIN/
# -----------------------------------------------------------------------------
# gibo dump macOS
### Generated by gibo (https://github.com/simonwhitaker/gibo)
### https://raw.github.com/github/gitignore/4d89c5d3e2880f946f63dd4346192dcd7e428d5a/Global/macOS.gitignore
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/macOS.gitignore

# General
.DS_Store
.localized
__MACOSX/
.AppleDouble
.LSOverride
Icon[]

# Resource forks
# Icon must end with two \r
Icon

# Thumbnails
._*

# Files and directories that might appear in the root of a volume
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.com.apple.timemachine.supported
.PKInstallSandboxManager
.PKInstallSandboxManager-SystemSoftware
.hotfiles.btree
.vol
.file
.disk_label*
lost+found
.HFS+ Private Directory Data[]

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Mac OS 6 to 9
Desktop DB
Desktop DF
TheFindByContentFolder
TheVolumeSettingsFolder
.FBCIndex
.FBCSemaphoreFile
.FBCLockFolder

# Quota system
.quota.group
.quota.user
.quota.ops.group
.quota.ops.user

# TimeMachine
Backups.backupdb
.MobileBackups
.MobileBackups.trash
MobileBackups.trash
tmbootpicker.efi
# -----------------------------------------------------------------------------
# gibo dump Node
### Generated by gibo (https://github.com/simonwhitaker/gibo)
### https://raw.github.com/github/gitignore/4d89c5d3e2880f946f63dd4346192dcd7e428d5a/Node.gitignore
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Node.gitignore

# Logs
logs
Expand All @@ -128,6 +92,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -179,6 +144,12 @@ web_modules/
# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

Expand All @@ -190,8 +161,10 @@ web_modules/

# dotenv environment variable files
.env
.env.*
!.env.example
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -204,7 +177,6 @@ out
# Nuxt.js build / generate output
.nuxt
dist
.output

# Gatsby files
.cache/
Expand All @@ -215,17 +187,9 @@ dist
# vuepress build output
.vuepress/dist

# vuepress v2.x temp directory
# vuepress v2.x temp and cache directory
.temp

# Sveltekit cache directory
.svelte-kit/

# vitepress build output
**/.vitepress/dist

# vitepress cache directory
**/.vitepress/cache
.cache

# Docusaurus cache and generated files
.docusaurus
Expand All @@ -239,31 +203,18 @@ dist
# DynamoDB Local files
.dynamodb/

# Firebase cache directory
.firebase/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# pnpm
.pnpm-store

# yarn v3
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Vite files
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
.vite/
# -----------------------------------------------------------------------------
.tmp/
# -----------------------------------------------------------------------------
Expand Down
5 changes: 0 additions & 5 deletions .gitignore.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#!/usr/bin/env bash
set -euo pipefail
cd "${0%/*}" && exec > .gitignore
gi() { curl -L -s https://www.gitignore.io/api/"$*"; }
# `gibo list' and `gi list'
gibo dump Linux
gibo dump Windows
gibo dump macOS
Expand Down