Skip to content

Commit

Permalink
chore: update gitignore to vidavidorra/repo-template@v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbruijn committed Oct 7, 2020
1 parent 7828057 commit 9bd125a
Showing 1 changed file with 90 additions and 37 deletions.
127 changes: 90 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#####################################################
# macOS #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# macOS
# Source: https://www.gitignore.io
################################################################################
# General
.DS_Store
.AppleDouble
Expand Down Expand Up @@ -30,10 +30,10 @@ Temporary Items
.apdisk


#####################################################
# Linux #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# Linux
# Source: https://www.gitignore.io
################################################################################
*~

# temporary files which can be created if a process still has a handle open of a deleted file
Expand All @@ -49,10 +49,10 @@ Temporary Items
.nfs*


#####################################################
# Windows #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# Windows
# Source: https://www.gitignore.io
################################################################################
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
Expand All @@ -79,16 +79,17 @@ $RECYCLE.BIN/
*.lnk


#####################################################
# dotenv #
#####################################################
################################################################################
# dotenv
# Source: https://www.gitignore.io
################################################################################
.env


#####################################################
# CMake #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# CMake
# Source: https://www.gitignore.io
################################################################################
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
Expand All @@ -106,10 +107,10 @@ _deps
*-prefix/


#####################################################
# Node #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# Node
# Source: https://www.gitignore.io
################################################################################
# Logs
logs
*.log
Expand Down Expand Up @@ -165,6 +166,12 @@ typings/
# Optional eslint cache
.eslintcache

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

# Optional REPL history
.node_repl_history

Expand All @@ -177,18 +184,24 @@ typings/
# dotenv environment variables file
.env
.env.test
.env*.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# next.js build output
# Next.js build output
.next

# nuxt.js build output
# Nuxt.js build / generate output
.nuxt
dist

# react / gatsby
public/
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist
Expand All @@ -202,14 +215,17 @@ public/
# DynamoDB Local files
.dynamodb/

# Typescript output directories
dist/
# TernJS port file
.tern-port

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


#####################################################
# C #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# C
# Source: https://www.gitignore.io
################################################################################
# Prerequisites
*.d

Expand Down Expand Up @@ -264,10 +280,10 @@ Mkfile.old
dkms.conf


#####################################################
# C++ #
# Source: https://www.gitignore.io #
#####################################################
################################################################################
# C++
# Source: https://www.gitignore.io
################################################################################
# Prerequisites
*.d

Expand Down Expand Up @@ -300,3 +316,40 @@ dkms.conf
*.exe
*.out
*.app


################################################################################
# Go
# Source: https://www.gitignore.io
################################################################################
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

### Go Patch ###
/vendor/
/Godeps/


################################################################################
# Visual Studio Code
# Source: https://www.gitignore.io
################################################################################
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

0 comments on commit 9bd125a

Please sign in to comment.